Searched refs:ksched (Results 1 – 1 of 1) sorted by relevance
| /mirbsd/src/lib/libssl/src/crypto/evp/ |
| D | evp_locl.h | 70 #define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \ argument 74 cprefix##_ecb_encrypt(in + i, out + i, &((kstruct *)ctx->cipher_data)->ksched, ctx->encrypt);\ 78 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \ argument 81 …cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv… 85 #define BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \ argument 88 …cprefix##_cbc_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, ctx->en… 92 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ argument 95 …cprefix##_cfb##cbits##_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv… 99 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \ argument 100 BLOCK_CIPHER_func_cbc(cname, cprefix, kstruct, ksched) \ [all …]
|