Home
last modified time | relevance | path

Searched refs:EVP_MAXCHUNK (Results 1 - 11 of 11) sorted by relevance

/third_party/node/deps/openssl/openssl/crypto/evp/
H A De_des.c73 while (inl >= EVP_MAXCHUNK) { in des_ofb_cipher()
75 DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ofb_cipher()
79 inl -= EVP_MAXCHUNK; in des_ofb_cipher()
80 in += EVP_MAXCHUNK; in des_ofb_cipher()
81 out += EVP_MAXCHUNK; in des_ofb_cipher()
102 while (inl >= EVP_MAXCHUNK) { in des_cbc_cipher()
103 DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK, in des_cbc_cipher()
107 inl -= EVP_MAXCHUNK; in des_cbc_cipher()
108 in += EVP_MAXCHUNK; in des_cbc_cipher()
109 out += EVP_MAXCHUNK; in des_cbc_cipher()
[all...]
H A De_des3.c83 while (inl >= EVP_MAXCHUNK) { in des_ede_ofb_cipher()
85 DES_ede3_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ede_ofb_cipher()
91 inl -= EVP_MAXCHUNK; in des_ede_ofb_cipher()
92 in += EVP_MAXCHUNK; in des_ede_ofb_cipher()
93 out += EVP_MAXCHUNK; in des_ede_ofb_cipher()
118 while (inl >= EVP_MAXCHUNK) { in des_ede_cbc_cipher()
119 DES_ede3_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ede_cbc_cipher()
123 inl -= EVP_MAXCHUNK; in des_ede_cbc_cipher()
124 in += EVP_MAXCHUNK; in des_ede_cbc_cipher()
125 out += EVP_MAXCHUNK; in des_ede_cbc_cipher()
[all...]
H A De_xcbc_d.c75 while (inl >= EVP_MAXCHUNK) { in desx_cbc_cipher()
76 DES_xcbc_encrypt(in, out, (long)EVP_MAXCHUNK, &data(ctx)->ks, in desx_cbc_cipher()
80 inl -= EVP_MAXCHUNK; in desx_cbc_cipher()
81 in += EVP_MAXCHUNK; in desx_cbc_cipher()
82 out += EVP_MAXCHUNK; in desx_cbc_cipher()
/third_party/openssl/crypto/evp/
H A De_des.c73 while (inl >= EVP_MAXCHUNK) { in des_ofb_cipher()
75 DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ofb_cipher()
79 inl -= EVP_MAXCHUNK; in des_ofb_cipher()
80 in += EVP_MAXCHUNK; in des_ofb_cipher()
81 out += EVP_MAXCHUNK; in des_ofb_cipher()
102 while (inl >= EVP_MAXCHUNK) { in des_cbc_cipher()
103 DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK, in des_cbc_cipher()
107 inl -= EVP_MAXCHUNK; in des_cbc_cipher()
108 in += EVP_MAXCHUNK; in des_cbc_cipher()
109 out += EVP_MAXCHUNK; in des_cbc_cipher()
[all...]
H A De_des3.c83 while (inl >= EVP_MAXCHUNK) { in des_ede_ofb_cipher()
85 DES_ede3_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ede_ofb_cipher()
91 inl -= EVP_MAXCHUNK; in des_ede_ofb_cipher()
92 in += EVP_MAXCHUNK; in des_ede_ofb_cipher()
93 out += EVP_MAXCHUNK; in des_ede_ofb_cipher()
118 while (inl >= EVP_MAXCHUNK) { in des_ede_cbc_cipher()
119 DES_ede3_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ede_cbc_cipher()
123 inl -= EVP_MAXCHUNK; in des_ede_cbc_cipher()
124 in += EVP_MAXCHUNK; in des_ede_cbc_cipher()
125 out += EVP_MAXCHUNK; in des_ede_cbc_cipher()
[all...]
H A De_xcbc_d.c75 while (inl >= EVP_MAXCHUNK) { in desx_cbc_cipher()
76 DES_xcbc_encrypt(in, out, (long)EVP_MAXCHUNK, &data(ctx)->ks, in desx_cbc_cipher()
80 inl -= EVP_MAXCHUNK; in desx_cbc_cipher()
81 in += EVP_MAXCHUNK; in desx_cbc_cipher()
82 out += EVP_MAXCHUNK; in desx_cbc_cipher()
/third_party/openssl/ohos_lite/include/crypto/
H A Devp.h181 #define EVP_MAXCHUNK ((size_t)1<<(sizeof(long)*8-2)) macro
186 while(inl>=EVP_MAXCHUNK) {\
188 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_iv_noconst(ctx), &num); \
190 inl-=EVP_MAXCHUNK;\
191 in +=EVP_MAXCHUNK;\
192 out+=EVP_MAXCHUNK;\
205 while(inl>=EVP_MAXCHUNK) \
207 cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_iv_noconst(ctx), EVP_CIPHER_CTX_encrypting(ctx));\
208 inl-=EVP_MAXCHUNK;\
209 in +=EVP_MAXCHUNK;\
[all...]
/third_party/node/deps/openssl/openssl/include/crypto/
H A Devp.h368 #define EVP_MAXCHUNK ((size_t)1 << 30) macro
373 while(inl>=EVP_MAXCHUNK) {\
375 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num); \
377 inl-=EVP_MAXCHUNK;\
378 in +=EVP_MAXCHUNK;\
379 out+=EVP_MAXCHUNK;\
392 while(inl>=EVP_MAXCHUNK) \
394 cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, EVP_CIPHER_CTX_is_encrypting(ctx));\
395 inl-=EVP_MAXCHUNK;\
396 in +=EVP_MAXCHUNK;\
[all...]
/third_party/openssl/include/crypto/
H A Devp.h368 #define EVP_MAXCHUNK ((size_t)1 << 30) macro
373 while(inl>=EVP_MAXCHUNK) {\
375 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num); \
377 inl-=EVP_MAXCHUNK;\
378 in +=EVP_MAXCHUNK;\
379 out+=EVP_MAXCHUNK;\
392 while(inl>=EVP_MAXCHUNK) \
394 cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, EVP_CIPHER_CTX_is_encrypting(ctx));\
395 inl-=EVP_MAXCHUNK;\
396 in +=EVP_MAXCHUNK;\
[all...]
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_tdes_wrap.c115 * Sanity check input length: we typically only wrap keys so EVP_MAXCHUNK in tdes_wrap_cipher_internal()
119 if (inl >= EVP_MAXCHUNK || inl % 8) in tdes_wrap_cipher_internal()
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_tdes_wrap.c115 * Sanity check input length: we typically only wrap keys so EVP_MAXCHUNK in tdes_wrap_cipher_internal()
119 if (inl >= EVP_MAXCHUNK || inl % 8) in tdes_wrap_cipher_internal()

Completed in 7 milliseconds