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

  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
crypto_aead_aes256gcm.h 37 #define crypto_aead_aes256gcm_KEYBYTES 32U
39 size_t crypto_aead_aes256gcm_keybytes(void);
165 void crypto_aead_aes256gcm_keygen(unsigned char k[crypto_aead_aes256gcm_KEYBYTES]);
  /src/sys/external/isc/libsodium/dist/test/default/
aead_aes256gcm.c 3101 key = (unsigned char *) sodium_malloc(crypto_aead_aes256gcm_KEYBYTES);
3106 assert(strlen(tests[i].key_hex) == 2 * crypto_aead_aes256gcm_KEYBYTES);
3107 sodium_hex2bin(key, crypto_aead_aes256gcm_KEYBYTES,
3234 assert(crypto_aead_aes256gcm_keybytes() == crypto_aead_aes256gcm_KEYBYTES);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_aead/aes256gcm/aesni/
aead_aes256gcm_aesni.c 1040 crypto_aead_aes256gcm_keybytes(void) function in typeref:typename:size_t
1042 return crypto_aead_aes256gcm_KEYBYTES;
1076 crypto_aead_aes256gcm_keygen(unsigned char k[crypto_aead_aes256gcm_KEYBYTES])
1078 randombytes_buf(k, crypto_aead_aes256gcm_KEYBYTES);

Completed in 16 milliseconds