Lines Matching refs:ksched

367 #define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \  argument
371 …cprefix##_ecb_encrypt(in + i, out + i, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_is_encrypt…
377 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \ argument
382 …b##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num); \
390 …cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num…
396 #define BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \ argument
400 …cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, EVP_…
406 …cprefix##_cbc_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, EVP_CIPHER_CT…
410 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ argument
422 &EVP_C_DATA(kstruct, ctx)->ksched, ctx->iv,\
433 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \ argument
434 BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \
435 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \
436 BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \
437 BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched)
556 #define IMPLEMENT_BLOCK_CIPHER(cname, ksched, cprefix, kstruct, nid, \ argument
560 BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \
565 #define IMPLEMENT_CFBR(cipher,cprefix,kstruct,ksched,keysize,cbits,iv_len,fl) \ argument
566 BLOCK_CIPHER_func_cfb(cipher##_##keysize,cprefix,cbits,kstruct,ksched) \