Searched refs:AES_BLOCK_SIZE (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/third_party/ulib/uboringssl/include/openssl/
H A Daes.h68 #define AES_BLOCK_SIZE 16 macro
112 uint8_t ivec[AES_BLOCK_SIZE],
113 uint8_t ecount_buf[AES_BLOCK_SIZE],
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/rand/
H A Dctrdrbg.c67 OPENSSL_COMPILE_ASSERT(CTR_DRBG_ENTROPY_LEN % AES_BLOCK_SIZE == 0,
87 for (size_t i = 0; i < CTR_DRBG_ENTROPY_LEN; i += AES_BLOCK_SIZE) {
157 while (out_len >= AES_BLOCK_SIZE) {
163 todo &= ~(AES_BLOCK_SIZE-1);
164 const size_t num_blocks = todo / AES_BLOCK_SIZE;
172 for (size_t i = 0; i < todo; i += AES_BLOCK_SIZE) {
183 uint8_t block[AES_BLOCK_SIZE];
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/aes/
H A Dmode_wrappers.c58 const AES_KEY *key, uint8_t ivec[AES_BLOCK_SIZE],
59 uint8_t ecount_buf[AES_BLOCK_SIZE], unsigned int *num) {
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/cipher_extra/
H A De_aesgcmsiv.c418 in_len_64 > (UINT64_C(1) << 36) + AES_BLOCK_SIZE) {
606 const uint8_t initial_counter[AES_BLOCK_SIZE],
613 OPENSSL_memcpy(counter.c, initial_counter, AES_BLOCK_SIZE);
617 uint8_t keystream[AES_BLOCK_SIZE];
621 size_t todo = AES_BLOCK_SIZE;
699 uint8_t counter[AES_BLOCK_SIZE];
700 OPENSSL_memset(counter, 0, AES_BLOCK_SIZE - EVP_AEAD_AES_GCM_SIV_NONCE_LEN);
701 OPENSSL_memcpy(counter + AES_BLOCK_SIZE - EVP_AEAD_AES_GCM_SIV_NONCE_LEN,
706 uint8_t ciphertext[AES_BLOCK_SIZE];
771 in_len_64 > (UINT64_C(1) << 36) + AES_BLOCK_SIZE) {
[all...]
/fuchsia/zircon/third_party/ulib/uboringssl/decrepit/xts/
H A Dxts.c216 len < AES_BLOCK_SIZE ||

Completed in 86 milliseconds