2019-01-15 15:03:38 +00:00
|
|
|
#include "api.h"
|
|
|
|
#include "randombytes.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-01-15 16:13:19 +00:00
|
|
|
#define NTESTS 10
|
|
|
|
|
|
|
|
/* allocate a bit more for all keys and messages and
|
|
|
|
* make sure it is not touched by the implementations.
|
|
|
|
*/
|
|
|
|
static void write_canary(unsigned char *d) {
|
2019-01-16 10:02:32 +00:00
|
|
|
*((uint64_t *)d) = 0x0123456789ABCDEF;
|
2019-01-15 16:13:19 +00:00
|
|
|
}
|
|
|
|
|
2019-01-16 07:18:33 +00:00
|
|
|
static int check_canary(const unsigned char *d) {
|
2019-01-16 10:02:32 +00:00
|
|
|
if (*(uint64_t *)d != 0x0123456789ABCDEF) {
|
|
|
|
return -1;
|
|
|
|
}
|
2019-01-16 12:52:53 +00:00
|
|
|
|
|
|
|
return 0;
|
2019-01-15 16:13:19 +00:00
|
|
|
}
|
|
|
|
|
2019-01-22 16:37:58 +00:00
|
|
|
// https://stackoverflow.com/a/1489985/1711232
|
|
|
|
#define PASTER(x, y) x##_##y
|
|
|
|
#define EVALUATOR(x, y) PASTER(x, y)
|
|
|
|
#define NAMESPACE(fun) EVALUATOR(PQCLEAN_NAMESPACE, fun)
|
|
|
|
|
|
|
|
#define crypto_kem_keypair NAMESPACE(crypto_kem_keypair)
|
|
|
|
#define crypto_kem_enc NAMESPACE(crypto_kem_enc)
|
|
|
|
#define crypto_kem_dec NAMESPACE(crypto_kem_dec)
|
|
|
|
|
2019-01-23 12:09:18 +00:00
|
|
|
#define RETURNS_ZERO(f) \
|
|
|
|
if ((f) != 0) { \
|
|
|
|
puts(#f " returned non-zero returncode"); \
|
|
|
|
return -1; \
|
|
|
|
}
|
|
|
|
|
2019-01-15 16:13:19 +00:00
|
|
|
static int test_keys(void) {
|
2019-01-16 10:02:32 +00:00
|
|
|
unsigned char key_a[CRYPTO_BYTES + 16], key_b[CRYPTO_BYTES + 16];
|
|
|
|
unsigned char pk[CRYPTO_PUBLICKEYBYTES + 16];
|
|
|
|
unsigned char sendb[CRYPTO_CIPHERTEXTBYTES + 16];
|
|
|
|
unsigned char sk_a[CRYPTO_SECRETKEYBYTES + 16];
|
|
|
|
|
|
|
|
write_canary(key_a);
|
|
|
|
write_canary(key_a + sizeof(key_a) - 8);
|
|
|
|
write_canary(key_b);
|
|
|
|
write_canary(key_b + sizeof(key_b) - 8);
|
|
|
|
write_canary(pk);
|
|
|
|
write_canary(pk + sizeof(pk) - 8);
|
|
|
|
write_canary(sendb);
|
|
|
|
write_canary(sendb + sizeof(sendb) - 8);
|
|
|
|
write_canary(sk_a);
|
|
|
|
write_canary(sk_a + sizeof(sk_a) - 8);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NTESTS; i++) {
|
|
|
|
// Alice generates a public key
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_kem_keypair(pk + 8, sk_a + 8));
|
2019-01-16 10:02:32 +00:00
|
|
|
|
|
|
|
// Bob derives a secret key and creates a response
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_kem_enc(sendb + 8, key_b + 8, pk + 8));
|
2019-01-16 10:02:32 +00:00
|
|
|
|
|
|
|
// Alice uses Bobs response to get her secret key
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_kem_dec(key_a + 8, sendb + 8, sk_a + 8));
|
2019-01-16 10:02:32 +00:00
|
|
|
|
|
|
|
if (memcmp(key_a + 8, key_b + 8, CRYPTO_BYTES) != 0) {
|
|
|
|
printf("ERROR KEYS\n");
|
2019-01-23 12:09:18 +00:00
|
|
|
return -1;
|
2019-01-16 12:02:35 +00:00
|
|
|
}
|
2019-01-23 12:09:18 +00:00
|
|
|
|
2019-01-16 12:02:35 +00:00
|
|
|
if (check_canary(key_a) || check_canary(key_a + sizeof(key_a) - 8) ||
|
|
|
|
check_canary(key_b) || check_canary(key_b + sizeof(key_b) - 8) ||
|
|
|
|
check_canary(pk) || check_canary(pk + sizeof(pk) - 8) ||
|
|
|
|
check_canary(sendb) || check_canary(sendb + sizeof(sendb) - 8) ||
|
|
|
|
check_canary(sk_a) || check_canary(sk_a + sizeof(sk_a) - 8)) {
|
2019-01-16 10:02:32 +00:00
|
|
|
printf("ERROR canary overwritten\n");
|
2019-01-23 12:09:18 +00:00
|
|
|
return -1;
|
2019-01-16 10:02:32 +00:00
|
|
|
}
|
2019-01-15 16:13:19 +00:00
|
|
|
}
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
return 0;
|
2019-01-15 15:03:38 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:13:19 +00:00
|
|
|
static int test_invalid_sk_a(void) {
|
2019-01-16 10:02:32 +00:00
|
|
|
unsigned char sk_a[CRYPTO_SECRETKEYBYTES];
|
|
|
|
unsigned char key_a[CRYPTO_BYTES], key_b[CRYPTO_BYTES];
|
|
|
|
unsigned char pk[CRYPTO_PUBLICKEYBYTES];
|
|
|
|
unsigned char sendb[CRYPTO_CIPHERTEXTBYTES];
|
|
|
|
int i;
|
2019-01-23 12:09:18 +00:00
|
|
|
int returncode;
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
for (i = 0; i < NTESTS; i++) {
|
|
|
|
// Alice generates a public key
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_kem_keypair(pk, sk_a));
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
// Bob derives a secret key and creates a response
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_kem_enc(sendb, key_b, pk));
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
// Replace secret key with random values
|
|
|
|
randombytes(sk_a, CRYPTO_SECRETKEYBYTES);
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
// Alice uses Bobs response to get her secret key
|
2019-01-23 12:09:18 +00:00
|
|
|
if ((returncode = crypto_kem_dec(key_a, sendb, sk_a)) > -1) {
|
|
|
|
printf("ERROR failing crypto_kem_dec returned %d instead of negative code\n", returncode);
|
|
|
|
return -1;
|
|
|
|
}
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
if (!memcmp(key_a, key_b, CRYPTO_BYTES)) {
|
|
|
|
printf("ERROR invalid sk_a\n");
|
2019-01-16 12:02:35 +00:00
|
|
|
return 1;
|
2019-01-16 10:02:32 +00:00
|
|
|
}
|
2019-01-15 16:13:19 +00:00
|
|
|
}
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
return 0;
|
2019-01-15 15:03:38 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:13:19 +00:00
|
|
|
static int test_invalid_ciphertext(void) {
|
2019-01-16 10:02:32 +00:00
|
|
|
unsigned char sk_a[CRYPTO_SECRETKEYBYTES];
|
|
|
|
unsigned char key_a[CRYPTO_BYTES], key_b[CRYPTO_BYTES];
|
|
|
|
unsigned char pk[CRYPTO_PUBLICKEYBYTES];
|
|
|
|
unsigned char sendb[CRYPTO_CIPHERTEXTBYTES];
|
|
|
|
int i;
|
|
|
|
size_t pos;
|
2019-01-23 12:09:18 +00:00
|
|
|
int returncode;
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
for (i = 0; i < NTESTS; i++) {
|
|
|
|
randombytes((unsigned char *)&pos, sizeof(size_t));
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
// Alice generates a public key
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_kem_keypair(pk, sk_a));
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
// Bob derives a secret key and creates a response
|
2019-01-23 12:09:18 +00:00
|
|
|
RETURNS_ZERO(crypto_kem_enc(sendb, key_b, pk));
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
// Change some byte in the ciphertext (i.e., encapsulated key)
|
|
|
|
sendb[pos % CRYPTO_CIPHERTEXTBYTES] ^= 23;
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
// Alice uses Bobs response to get her secret key
|
2019-01-29 15:05:44 +00:00
|
|
|
if ((returncode = crypto_kem_dec(key_a, sendb, sk_a)) > 0) {
|
|
|
|
printf("ERROR crypto_kem_dec should either fail (negative returncode) or succeed (return 0) but returned %d\n", returncode);
|
2019-01-23 12:09:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
if (!memcmp(key_a, key_b, CRYPTO_BYTES)) {
|
|
|
|
printf("ERROR invalid ciphertext\n");
|
2019-01-16 12:02:35 +00:00
|
|
|
return 1;
|
2019-01-16 10:02:32 +00:00
|
|
|
}
|
2019-01-15 16:13:19 +00:00
|
|
|
}
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 10:02:32 +00:00
|
|
|
return 0;
|
2019-01-15 15:03:38 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 15:34:01 +00:00
|
|
|
int main(void) {
|
2019-01-16 12:02:35 +00:00
|
|
|
int result = 0;
|
|
|
|
result += test_keys();
|
|
|
|
result += test_invalid_sk_a();
|
|
|
|
result += test_invalid_ciphertext();
|
2019-01-15 15:03:38 +00:00
|
|
|
|
2019-01-16 12:02:35 +00:00
|
|
|
if (result != 0) {
|
|
|
|
puts("Errors occurred");
|
|
|
|
}
|
|
|
|
return result;
|
2019-01-15 16:13:19 +00:00
|
|
|
}
|