Searched refs:MAXBITCHUNK (Results 1 – 4 of 4) sorted by relevance
/openssl/providers/implementations/ciphers/ |
H A D | ciphercommon_hw.c | 95 while (len >= MAXBITCHUNK) { in ossl_cipher_hw_generic_cfb1() 96 CRYPTO_cfb128_1_encrypt(in, out, MAXBITCHUNK * 8, dat->ks, in ossl_cipher_hw_generic_cfb1() 98 len -= MAXBITCHUNK; in ossl_cipher_hw_generic_cfb1() 99 out += MAXBITCHUNK; in ossl_cipher_hw_generic_cfb1() 100 in += MAXBITCHUNK; in ossl_cipher_hw_generic_cfb1()
|
/openssl/crypto/evp/ |
H A D | e_camellia.c | 41 #define MAXBITCHUNK ((size_t)1<<(sizeof(size_t)*8-4)) macro 301 while (len >= MAXBITCHUNK) { in camellia_cfb1_cipher() 303 CRYPTO_cfb128_1_encrypt(in, out, MAXBITCHUNK * 8, &dat->ks, in camellia_cfb1_cipher() 308 len -= MAXBITCHUNK; in camellia_cfb1_cipher() 309 out += MAXBITCHUNK; in camellia_cfb1_cipher() 310 in += MAXBITCHUNK; in camellia_cfb1_cipher()
|
H A D | e_aes.c | 119 #define MAXBITCHUNK ((size_t)1<<(sizeof(size_t)*8-4)) macro 2589 while (len >= MAXBITCHUNK) { in aes_cfb1_cipher() 2591 CRYPTO_cfb128_1_encrypt(in, out, MAXBITCHUNK * 8, &dat->ks, in aes_cfb1_cipher() 2595 len -= MAXBITCHUNK; in aes_cfb1_cipher() 2596 out += MAXBITCHUNK; in aes_cfb1_cipher() 2597 in += MAXBITCHUNK; in aes_cfb1_cipher()
|
/openssl/providers/implementations/include/prov/ |
H A D | ciphercommon.h | 22 # define MAXBITCHUNK ((size_t)1 << (sizeof(size_t) * 8 - 4)) macro
|
Completed in 40 milliseconds