• Home
  • Raw
  • Download

Lines Matching refs:cprefix

173 #define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \  argument
177cprefix##_ecb_encrypt(in + i, out + i, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_encrypting…
183 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \ argument
188cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_…
196cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CT…
202 #define BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \ argument
207cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CT…
213cprefix##_cbc_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_iv_noco…
217 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ argument
226 cprefix##_cfb##cbits##_encrypt(in, out, (long) \
241 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \ argument
242 BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \
243 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \
244 BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \
245 BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched)
359 #define IMPLEMENT_BLOCK_CIPHER(cname, ksched, cprefix, kstruct, nid, \ argument
363 BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \
368 #define IMPLEMENT_CFBR(cipher,cprefix,kstruct,ksched,keysize,cbits,iv_len,fl) \ argument
369 BLOCK_CIPHER_func_cfb(cipher##_##keysize,cprefix,cbits,kstruct,ksched) \