HomeSort by: relevance | last modified time | path
    Searched defs:ciphertext_len (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/test/default/
aead_aes256gcm.c 3096 size_t ciphertext_len; local in function:tv
3124 ciphertext_len = message_len + crypto_aead_aes256gcm_ABYTES;
3126 expected_ciphertext = (unsigned char *) sodium_malloc(ciphertext_len);
3135 ciphertext = (unsigned char *) sodium_malloc(ciphertext_len);
3148 hex = (char *) sodium_malloc((size_t) ciphertext_len * 2 + 1);
3149 sodium_bin2hex(hex, (size_t) ciphertext_len * 2 + 1,
3150 ciphertext, ciphertext_len);
3159 assert((size_t) found_ciphertext_len == ciphertext_len);
3160 if (memcmp(ciphertext, expected_ciphertext, ciphertext_len) != 0) {
3164 ciphertext, ciphertext_len);
    [all...]
aead_aes256gcm.c 3096 size_t ciphertext_len; local in function:tv
3124 ciphertext_len = message_len + crypto_aead_aes256gcm_ABYTES;
3126 expected_ciphertext = (unsigned char *) sodium_malloc(ciphertext_len);
3135 ciphertext = (unsigned char *) sodium_malloc(ciphertext_len);
3148 hex = (char *) sodium_malloc((size_t) ciphertext_len * 2 + 1);
3149 sodium_bin2hex(hex, (size_t) ciphertext_len * 2 + 1,
3150 ciphertext, ciphertext_len);
3159 assert((size_t) found_ciphertext_len == ciphertext_len);
3160 if (memcmp(ciphertext, expected_ciphertext, ciphertext_len) != 0) {
3164 ciphertext, ciphertext_len);
    [all...]

Completed in 72 milliseconds