|
10 | 10 |
|
11 | 11 | #include "secp256k1_schnorrsig.h"
|
12 | 12 |
|
| 13 | +/* Checks that a bit flip in the n_flip-th argument (that has n_bytes many |
| 14 | + * bytes) changes the hash function |
| 15 | + */ |
| 16 | +void nonce_function_bip340_bitflip(unsigned char **args, size_t n_flip, size_t n_bytes) { |
| 17 | + unsigned char nonces[2][32]; |
| 18 | + CHECK(nonce_function_bip340(nonces[0], args[0], args[1], args[2], args[3], args[4]) == 1); |
| 19 | + secp256k1_rand_flip(args[n_flip], n_bytes); |
| 20 | + CHECK(nonce_function_bip340(nonces[1], args[0], args[1], args[2], args[3], args[4]) == 1); |
| 21 | + CHECK(memcmp(nonces[0], nonces[1], 32) != 0); |
| 22 | +} |
| 23 | + |
| 24 | +/* Tests for the equality of two sha256 structs. This function only produces a |
| 25 | + * correct result if an integer multiple of 64 many bytes have been written |
| 26 | + * into the hash functions. */ |
| 27 | +void test_sha256_eq(const secp256k1_sha256 *sha1, const secp256k1_sha256 *sha2) { |
| 28 | + /* Is buffer fully consumed? */ |
| 29 | + CHECK((sha1->bytes & 0x3F) == 0); |
| 30 | + |
| 31 | + CHECK(sha1->bytes == sha2->bytes); |
| 32 | + CHECK(memcmp(sha1->s, sha2->s, sizeof(sha1->s)) == 0); |
| 33 | +} |
| 34 | + |
| 35 | +void run_nonce_function_bip340_tests(void) { |
| 36 | + unsigned char tag[13] = "BIP0340/nonce"; |
| 37 | + unsigned char aux_tag[11] = "BIP0340/aux"; |
| 38 | + unsigned char algo16[16] = "BIP0340/nonce\0\0\0"; |
| 39 | + secp256k1_sha256 sha; |
| 40 | + secp256k1_sha256 sha_optimized; |
| 41 | + unsigned char nonce[32]; |
| 42 | + unsigned char msg[32]; |
| 43 | + unsigned char key[32]; |
| 44 | + unsigned char pk[32]; |
| 45 | + unsigned char aux_rand[32]; |
| 46 | + unsigned char *args[5]; |
| 47 | + int i; |
| 48 | + |
| 49 | + /* Check that hash initialized by |
| 50 | + * secp256k1_nonce_function_bip340_sha256_tagged has the expected |
| 51 | + * state. */ |
| 52 | + secp256k1_sha256_initialize_tagged(&sha, tag, sizeof(tag)); |
| 53 | + secp256k1_nonce_function_bip340_sha256_tagged(&sha_optimized); |
| 54 | + test_sha256_eq(&sha, &sha_optimized); |
| 55 | + |
| 56 | + /* Check that hash initialized by |
| 57 | + * secp256k1_nonce_function_bip340_sha256_tagged_aux has the expected |
| 58 | + * state. */ |
| 59 | + secp256k1_sha256_initialize_tagged(&sha, aux_tag, sizeof(aux_tag)); |
| 60 | + secp256k1_nonce_function_bip340_sha256_tagged_aux(&sha_optimized); |
| 61 | + test_sha256_eq(&sha, &sha_optimized); |
| 62 | + |
| 63 | + secp256k1_rand256(msg); |
| 64 | + secp256k1_rand256(key); |
| 65 | + secp256k1_rand256(pk); |
| 66 | + secp256k1_rand256(aux_rand); |
| 67 | + |
| 68 | + /* Check that a bitflip in an argument results in different nonces. */ |
| 69 | + args[0] = msg; |
| 70 | + args[1] = key; |
| 71 | + args[2] = pk; |
| 72 | + args[3] = algo16; |
| 73 | + args[4] = aux_rand; |
| 74 | + for (i = 0; i < count; i++) { |
| 75 | + nonce_function_bip340_bitflip(args, 0, 32); |
| 76 | + nonce_function_bip340_bitflip(args, 1, 32); |
| 77 | + nonce_function_bip340_bitflip(args, 2, 32); |
| 78 | + /* Flip algo16 special case "BIP0340/nonce" */ |
| 79 | + nonce_function_bip340_bitflip(args, 3, 16); |
| 80 | + /* Flip algo16 again */ |
| 81 | + nonce_function_bip340_bitflip(args, 3, 16); |
| 82 | + nonce_function_bip340_bitflip(args, 4, 32); |
| 83 | + } |
| 84 | + |
| 85 | + /* NULL algo16 is disallowed */ |
| 86 | + CHECK(nonce_function_bip340(nonce, msg, key, pk, NULL, NULL) == 0); |
| 87 | + /* Empty algo16 is fine */ |
| 88 | + memset(algo16, 0x00, 16); |
| 89 | + CHECK(nonce_function_bip340(nonce, msg, key, pk, algo16, NULL) == 1); |
| 90 | + /* algo16 with terminating null bytes is fine */ |
| 91 | + algo16[1] = 65; |
| 92 | + CHECK(nonce_function_bip340(nonce, msg, key, pk, algo16, NULL) == 1); |
| 93 | + /* Other algo16 is fine */ |
| 94 | + memset(algo16, 0xFF, 16); |
| 95 | + CHECK(nonce_function_bip340(nonce, msg, key, pk, algo16, NULL) == 1); |
| 96 | + |
| 97 | + /* NULL aux_rand argument is allowed. */ |
| 98 | + CHECK(nonce_function_bip340(nonce, msg, key, pk, algo16, NULL) == 1); |
| 99 | +} |
| 100 | + |
13 | 101 | void run_schnorrsig_tests(void) {
|
14 |
| - /* TODO */ |
| 102 | + run_nonce_function_bip340_tests(); |
15 | 103 | }
|
16 | 104 |
|
17 | 105 | #endif
|
0 commit comments