Home
last modified time | relevance | path

Searched refs:EVP_MAXCHUNK (Results 1 – 4 of 4) sorted by relevance

/third_party/openssl/crypto/evp/
De_des.c68 while (inl >= EVP_MAXCHUNK) { in des_ofb_cipher()
70 DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ofb_cipher()
74 inl -= EVP_MAXCHUNK; in des_ofb_cipher()
75 in += EVP_MAXCHUNK; in des_ofb_cipher()
76 out += EVP_MAXCHUNK; in des_ofb_cipher()
98 while (inl >= EVP_MAXCHUNK) { in des_cbc_cipher()
99 DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK, in des_cbc_cipher()
103 inl -= EVP_MAXCHUNK; in des_cbc_cipher()
104 in += EVP_MAXCHUNK; in des_cbc_cipher()
105 out += EVP_MAXCHUNK; in des_cbc_cipher()
[all …]
De_des3.c79 while (inl >= EVP_MAXCHUNK) { in des_ede_ofb_cipher()
81 DES_ede3_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ede_ofb_cipher()
87 inl -= EVP_MAXCHUNK; in des_ede_ofb_cipher()
88 in += EVP_MAXCHUNK; in des_ede_ofb_cipher()
89 out += EVP_MAXCHUNK; in des_ede_ofb_cipher()
114 while (inl >= EVP_MAXCHUNK) { in des_ede_cbc_cipher()
115 DES_ede3_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ede_cbc_cipher()
119 inl -= EVP_MAXCHUNK; in des_ede_cbc_cipher()
120 in += EVP_MAXCHUNK; in des_ede_cbc_cipher()
121 out += EVP_MAXCHUNK; in des_ede_cbc_cipher()
[all …]
De_xcbc_d.c67 while (inl >= EVP_MAXCHUNK) { in desx_cbc_cipher()
68 DES_xcbc_encrypt(in, out, (long)EVP_MAXCHUNK, &data(ctx)->ks, in desx_cbc_cipher()
72 inl -= EVP_MAXCHUNK; in desx_cbc_cipher()
73 in += EVP_MAXCHUNK; in desx_cbc_cipher()
74 out += EVP_MAXCHUNK; in desx_cbc_cipher()
/third_party/openssl/include/crypto/
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_…
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_CT…
208 inl-=EVP_MAXCHUNK;\
209 in +=EVP_MAXCHUNK;\
[all …]