Searched refs:EVP_MAXCHUNK (Results 1 – 4 of 4) sorted by relevance
/external/openssl/crypto/evp/ |
D | e_des.c | 85 while(inl>=EVP_MAXCHUNK) in des_ofb_cipher() 87 DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, ctx->cipher_data, in des_ofb_cipher() 89 inl-=EVP_MAXCHUNK; in des_ofb_cipher() 90 in +=EVP_MAXCHUNK; in des_ofb_cipher() 91 out+=EVP_MAXCHUNK; in des_ofb_cipher() 102 while(inl>=EVP_MAXCHUNK) in des_cbc_cipher() 104 DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK, ctx->cipher_data, in des_cbc_cipher() 106 inl-=EVP_MAXCHUNK; in des_cbc_cipher() 107 in +=EVP_MAXCHUNK; in des_cbc_cipher() 108 out+=EVP_MAXCHUNK; in des_cbc_cipher() [all …]
|
D | e_des3.c | 104 if (inl>=EVP_MAXCHUNK) in des_ede_ofb_cipher() 106 DES_ede3_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ede_ofb_cipher() 109 inl-=EVP_MAXCHUNK; in des_ede_ofb_cipher() 110 in +=EVP_MAXCHUNK; in des_ede_ofb_cipher() 111 out+=EVP_MAXCHUNK; in des_ede_ofb_cipher() 135 if (inl>=EVP_MAXCHUNK) in des_ede_cbc_cipher() 137 DES_ede3_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, in des_ede_cbc_cipher() 140 inl-=EVP_MAXCHUNK; in des_ede_cbc_cipher() 141 in +=EVP_MAXCHUNK; in des_ede_cbc_cipher() 142 out+=EVP_MAXCHUNK; in des_ede_cbc_cipher() [all …]
|
D | e_xcbc_d.c | 119 while (inl>=EVP_MAXCHUNK) in desx_cbc_cipher() 121 DES_xcbc_encrypt(in,out,(long)EVP_MAXCHUNK,&data(ctx)->ks, in desx_cbc_cipher() 126 inl-=EVP_MAXCHUNK; in desx_cbc_cipher() 127 in +=EVP_MAXCHUNK; in desx_cbc_cipher() 128 out+=EVP_MAXCHUNK; in desx_cbc_cipher()
|
D | evp_locl.h | 78 #define EVP_MAXCHUNK ((size_t)1<<(sizeof(long)*8-2)) macro 83 while(inl>=EVP_MAXCHUNK)\ 85 …cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &((kstruct *)ctx->cipher_data)->ksched… 86 inl-=EVP_MAXCHUNK;\ 87 in +=EVP_MAXCHUNK;\ 88 out+=EVP_MAXCHUNK;\ 98 while(inl>=EVP_MAXCHUNK) \ 100 …cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv… 101 inl-=EVP_MAXCHUNK;\ 102 in +=EVP_MAXCHUNK;\ [all …]
|