HomeSort by: relevance | last modified time | path
    Searched refs:crypto_scalarmult_bytes (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/crypto/sodium/
crypto_scalarmult.h 14 #define crypto_scalarmult_BYTES crypto_scalarmult_curve25519_BYTES
16 size_t crypto_scalarmult_bytes(void);
60 #define crypto_scalarmult_BYTES crypto_scalarmult_curve25519_BYTES
62 size_t crypto_scalarmult_bytes(void);
106 #define crypto_scalarmult_BYTES crypto_scalarmult_curve25519_BYTES
108 size_t crypto_scalarmult_bytes(void);
152 #define crypto_scalarmult_BYTES crypto_scalarmult_curve25519_BYTES
154 size_t crypto_scalarmult_bytes(void);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/
crypto_scalarmult.c 24 crypto_scalarmult_bytes(void) function in typeref:typename:size_t
26 return crypto_scalarmult_BYTES;
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
crypto_scalarmult.h 13 #define crypto_scalarmult_BYTES crypto_scalarmult_curve25519_BYTES
15 size_t crypto_scalarmult_bytes(void);
  /src/sys/external/isc/libsodium/dist/test/default/
scalarmult.c 5 static const unsigned char alicesk[crypto_scalarmult_BYTES] = {
11 static const unsigned char bobsk[crypto_scalarmult_BYTES] = {
17 static const unsigned char small_order_p[crypto_scalarmult_BYTES] = {
23 static char hex[crypto_scalarmult_BYTES * 2 + 1];
29 (unsigned char *) sodium_malloc(crypto_scalarmult_BYTES);
31 (unsigned char *) sodium_malloc(crypto_scalarmult_BYTES);
32 unsigned char *k = (unsigned char *) sodium_malloc(crypto_scalarmult_BYTES);
38 sodium_bin2hex(hex, sizeof hex, alicepk, crypto_scalarmult_BYTES);
42 sodium_bin2hex(hex, sizeof hex, bobpk, crypto_scalarmult_BYTES);
47 sodium_bin2hex(hex, sizeof hex, k, crypto_scalarmult_BYTES);
    [all...]

Completed in 16 milliseconds