mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-23 12:05:11 -07:00
More tests
This commit is contained in:
parent
141de9be13
commit
12277ee6b5
@ -10,6 +10,7 @@
|
||||
#include "randombytes.h"
|
||||
#include "utils.h"
|
||||
|
||||
/* LCOV_EXCL_START */
|
||||
int
|
||||
crypto_sign_edwards25519sha512batch_keypair(unsigned char *pk,
|
||||
unsigned char *sk)
|
||||
@ -114,3 +115,4 @@ crypto_sign_edwards25519sha512batch_open(unsigned char *m,
|
||||
|
||||
return 0;
|
||||
}
|
||||
/* LCOV_EXCL_END */
|
||||
|
@ -167,6 +167,24 @@ tv3(void)
|
||||
if (crypto_scalarmult_ristretto255(s2, l, s2) == 0) {
|
||||
printf("s*l != inf (3)\n");
|
||||
}
|
||||
if (crypto_core_ristretto255_add(s2, s, s_) != 0) {
|
||||
printf("addition failed");
|
||||
}
|
||||
if (crypto_core_ristretto255_sub(s2, s2, s_) != 0) {
|
||||
printf("substraction failed");
|
||||
}
|
||||
if (crypto_core_ristretto255_is_valid_point(s2) == 0) {
|
||||
printf("invalid point");
|
||||
}
|
||||
if (memcmp(s, s2, crypto_core_ristretto255_BYTES) != 0) {
|
||||
printf("s2 + s - s_ != s\n");
|
||||
}
|
||||
if (crypto_core_ristretto255_sub(s2, s2, s) != 0) {
|
||||
printf("substraction failed");
|
||||
}
|
||||
if (crypto_core_ristretto255_is_valid_point(s2) == -1) {
|
||||
printf("s + s' - s - s' != 0");
|
||||
}
|
||||
}
|
||||
|
||||
sodium_free(s2);
|
||||
|
@ -83,6 +83,18 @@ main(void)
|
||||
if (memcmp(q, q2, crypto_scalarmult_ed25519_BYTES) == 0) {
|
||||
printf("clamping not applied\n");
|
||||
}
|
||||
|
||||
n[0] = 9;
|
||||
if (crypto_scalarmult_ed25519_base(q, n) != 0) {
|
||||
printf("crypto_scalarmult_ed25519_base() failed\n");
|
||||
}
|
||||
if (crypto_scalarmult_ed25519_base_noclamp(q2, n) != 0) {
|
||||
printf("crypto_scalarmult_ed25519_base_noclamp() failed\n");
|
||||
}
|
||||
if (memcmp(q, q2, crypto_scalarmult_ed25519_BYTES) == 0) {
|
||||
printf("clamping not applied\n");
|
||||
}
|
||||
|
||||
n[0] = 8;
|
||||
n[31] = 64;
|
||||
if (crypto_scalarmult_ed25519_noclamp(q2, n, p) != 0) {
|
||||
|
@ -32,6 +32,10 @@ main(void)
|
||||
assert(memcmp(p, p2, crypto_scalarmult_ristretto255_BYTES) == 0);
|
||||
sodium_increment(n, crypto_scalarmult_ristretto255_SCALARBYTES);
|
||||
}
|
||||
|
||||
memset(p, 0xfe, crypto_scalarmult_ristretto255_BYTES);
|
||||
assert(crypto_scalarmult_ristretto255(guard_page, n, p) == -1);
|
||||
|
||||
sodium_free(hex);
|
||||
sodium_free(p2);
|
||||
sodium_free(p);
|
||||
|
Loading…
Reference in New Issue
Block a user