summaryrefslogtreecommitdiff
path: root/test/default/aead_chacha20poly1305.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/default/aead_chacha20poly1305.c')
-rw-r--r--test/default/aead_chacha20poly1305.c68
1 files changed, 37 insertions, 31 deletions
diff --git a/test/default/aead_chacha20poly1305.c b/test/default/aead_chacha20poly1305.c
index 036d001..c587e96 100644
--- a/test/default/aead_chacha20poly1305.c
+++ b/test/default/aead_chacha20poly1305.c
@@ -1,36 +1,29 @@
-#include <stdio.h>
-#include <string.h>
#define TEST_NAME "aead_chacha20poly1305"
#include "cmptest.h"
-static unsigned char firstkey[crypto_aead_chacha20poly1305_KEYBYTES] = {
- 0x42, 0x90, 0xbc, 0xb1, 0x54, 0x17, 0x35, 0x31,
- 0xf3, 0x14, 0xaf, 0x57, 0xf3, 0xbe, 0x3b, 0x50,
- 0x06, 0xda, 0x37, 0x1e, 0xce, 0x27, 0x2a, 0xfa,
- 0x1b, 0x5d, 0xbd, 0xd1, 0x10, 0x0a, 0x10, 0x07
-};
+static unsigned char firstkey[crypto_aead_chacha20poly1305_KEYBYTES]
+ = { 0x42, 0x90, 0xbc, 0xb1, 0x54, 0x17, 0x35, 0x31, 0xf3, 0x14, 0xaf,
+ 0x57, 0xf3, 0xbe, 0x3b, 0x50, 0x06, 0xda, 0x37, 0x1e, 0xce, 0x27,
+ 0x2a, 0xfa, 0x1b, 0x5d, 0xbd, 0xd1, 0x10, 0x0a, 0x10, 0x07 };
-static unsigned char m[10U] = {
- 0x86, 0xd0, 0x99, 0x74, 0x84, 0x0b, 0xde, 0xd2, 0xa5, 0xca
-};
+static unsigned char m[10U]
+ = { 0x86, 0xd0, 0x99, 0x74, 0x84, 0x0b, 0xde, 0xd2, 0xa5, 0xca };
-static unsigned char nonce[crypto_aead_chacha20poly1305_NPUBBYTES] = {
- 0xcd, 0x7c, 0xf6, 0x7b, 0xe3, 0x9c, 0x79, 0x4a
-};
+static unsigned char nonce[crypto_aead_chacha20poly1305_NPUBBYTES]
+ = { 0xcd, 0x7c, 0xf6, 0x7b, 0xe3, 0x9c, 0x79, 0x4a };
-static unsigned char ad[10U] = {
- 0x87, 0xe2, 0x29, 0xd4, 0x50, 0x08, 0x45, 0xa0, 0x79, 0xc0
-};
+static unsigned char ad[10U]
+ = { 0x87, 0xe2, 0x29, 0xd4, 0x50, 0x08, 0x45, 0xa0, 0x79, 0xc0 };
static unsigned char c[10U + crypto_aead_chacha20poly1305_ABYTES];
int main(void)
{
- unsigned char m2[10U];
+ unsigned char m2[10U];
unsigned long long clen;
unsigned long long m2len;
- size_t i;
+ size_t i;
crypto_aead_chacha20poly1305_encrypt(c, &clen, m, sizeof m, ad, sizeof ad,
NULL, nonce, firstkey);
@@ -38,16 +31,15 @@ int main(void)
printf("clen is not properly set\n");
}
for (i = 0U; i < sizeof c; ++i) {
- printf(",0x%02x", (unsigned int) c[i]);
+ printf(",0x%02x", (unsigned int)c[i]);
if (i % 8 == 7) {
printf("\n");
}
}
printf("\n");
- if (crypto_aead_chacha20poly1305_decrypt(m2, &m2len, NULL, c, sizeof c,
- ad, sizeof ad,
- nonce, firstkey) != 0) {
+ if (crypto_aead_chacha20poly1305_decrypt(m2, &m2len, NULL, c, sizeof c, ad,
+ sizeof ad, nonce, firstkey) != 0) {
printf("crypto_aead_chacha20poly1305_decrypt() failed\n");
}
if (m2len != sizeof c - crypto_aead_chacha20poly1305_abytes()) {
@@ -60,21 +52,20 @@ int main(void)
for (i = 0U; i < sizeof c; i++) {
c[i] ^= (i + 1U);
if (crypto_aead_chacha20poly1305_decrypt(m2, NULL, NULL, c, sizeof c,
- ad, sizeof ad,
- nonce, firstkey) == 0 ||
- memcmp(m, m2, sizeof m) == 0) {
+ ad, sizeof ad, nonce, firstkey)
+ == 0 || memcmp(m, m2, sizeof m) == 0) {
printf("message can be forged\n");
}
c[i] ^= (i + 1U);
}
- crypto_aead_chacha20poly1305_encrypt(c, &clen, m, sizeof m, NULL, 0U,
- NULL, nonce, firstkey);
+ crypto_aead_chacha20poly1305_encrypt(c, &clen, m, sizeof m, NULL, 0U, NULL,
+ nonce, firstkey);
if (clen != sizeof m + crypto_aead_chacha20poly1305_abytes()) {
printf("clen is not properly set (adlen=0)\n");
}
for (i = 0U; i < sizeof c; ++i) {
- printf(",0x%02x", (unsigned int) c[i]);
+ printf(",0x%02x", (unsigned int)c[i]);
if (i % 8 == 7) {
printf("\n");
}
@@ -82,8 +73,7 @@ int main(void)
printf("\n");
if (crypto_aead_chacha20poly1305_decrypt(m2, &m2len, NULL, c, sizeof c,
- NULL, 0U,
- nonce, firstkey) != 0) {
+ NULL, 0U, nonce, firstkey) != 0) {
printf("crypto_aead_chacha20poly1305_decrypt() failed (adlen=0)\n");
}
if (m2len != sizeof c - crypto_aead_chacha20poly1305_abytes()) {
@@ -93,5 +83,21 @@ int main(void)
printf("m != m2 (adlen=0)\n");
}
+ if (crypto_aead_chacha20poly1305_decrypt(
+ m2, &m2len, NULL, c, crypto_aead_chacha20poly1305_ABYTES / 2, NULL,
+ 0U, nonce, firstkey) != -1) {
+ printf("crypto_aead_chacha20poly1305_decrypt() worked with a short "
+ "ciphertext\n");
+ }
+ if (crypto_aead_chacha20poly1305_decrypt(m2, &m2len, NULL, c, 0U, NULL, 0U,
+ nonce, firstkey) != -1) {
+ printf("crypto_aead_chacha20poly1305_decrypt() worked with an empty "
+ "ciphertext\n");
+ }
+
+ assert(crypto_aead_chacha20poly1305_keybytes() > 0U);
+ assert(crypto_aead_chacha20poly1305_npubbytes() > 0U);
+ assert(crypto_aead_chacha20poly1305_nsecbytes() == 0U);
+
return 0;
}