Lines Matching refs:cprefix

368 #define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \  argument
372cprefix##_ecb_encrypt(in + i, out + i, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_is_encrypt…
378 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \ argument
383cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx-…
391cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num…
397 #define BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \ argument
401cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, EVP_…
407cprefix##_cbc_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, EVP_CIPHER_CT…
411 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ argument
419 cprefix##_cfb##cbits##_encrypt(in, out, (long) \
434 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \ argument
435 BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \
436 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \
437 BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \
438 BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched)
557 #define IMPLEMENT_BLOCK_CIPHER(cname, ksched, cprefix, kstruct, nid, \ argument
561 BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \
566 #define IMPLEMENT_CFBR(cipher,cprefix,kstruct,ksched,keysize,cbits,iv_len,fl) \ argument
567 BLOCK_CIPHER_func_cfb(cipher##_##keysize,cprefix,cbits,kstruct,ksched) \