/src/sys/external/isc/libsodium/dist/test/default/ |
scalarmult.c | 17 static const unsigned char small_order_p[crypto_scalarmult_BYTES] = { variable in typeref:typename:const unsigned char[] 55 ret = crypto_scalarmult(k, bobsk, small_order_p);
|
box.c | 17 static const unsigned char small_order_p[crypto_box_PUBLICKEYBYTES] = { variable in typeref:typename:const unsigned char[] 64 ret = crypto_box(c, m, 163, nonce, small_order_p, alicesk); 79 ret = crypto_box_beforenm(k, small_order_p, alicesk);
|
box2.c | 17 static const unsigned char small_order_p[crypto_box_PUBLICKEYBYTES] = { variable in typeref:typename:const unsigned char[] 63 ret = crypto_box_open(m, c, 163, nonce, small_order_p, bobsk); 67 ret = crypto_box_beforenm(k, small_order_p, bobsk);
|
kx.c | 5 static const unsigned char small_order_p[crypto_scalarmult_BYTES] = { variable in typeref:typename:const unsigned char[] 44 small_order_p) == -1); 55 small_order_p) == -1);
|
box_easy2.c | 5 static const unsigned char small_order_p[crypto_box_PUBLICKEYBYTES] = { variable in typeref:typename:const unsigned char[] 79 ret = crypto_box_beforenm(k1, small_order_p, bobsk); 81 ret = crypto_box_beforenm(k2, small_order_p, alicesk); 111 small_order_p, bobsk); 117 small_order_p, alicesk) != -1) {
|
xchacha20.c | 11 static const unsigned char small_order_p[crypto_scalarmult_BYTES] = { variable in typeref:typename:const unsigned char[] 336 nonce, small_order_p, sk) == -1); 350 assert(crypto_box_curve25519xchacha20poly1305_beforenm(pc, small_order_p, sk) == -1); 370 nonce, small_order_p, sk) == -1); 374 (m2, out, mac, m_len, nonce, small_order_p, sk) == -1);
|