Lines Matching refs:kbits
306 static void *aes_ocb_newctx(void *provctx, size_t kbits, size_t blkbits, in aes_ocb_newctx() argument
316 ossl_cipher_generic_initkey(ctx, kbits, blkbits, ivbits, mode, flags, in aes_ocb_newctx()
317 ossl_prov_cipher_hw_aes_ocb(kbits), NULL); in aes_ocb_newctx()
519 #define IMPLEMENT_cipher(mode, UCMODE, flags, kbits, blkbits, ivbits) \ argument
520 static OSSL_FUNC_cipher_get_params_fn aes_##kbits##_##mode##_get_params; \
521 static int aes_##kbits##_##mode##_get_params(OSSL_PARAM params[]) \
524 flags, kbits, blkbits, ivbits); \
526 static OSSL_FUNC_cipher_newctx_fn aes_##kbits##_##mode##_newctx; \
527 static void *aes_##kbits##_##mode##_newctx(void *provctx) \
529 return aes_##mode##_newctx(provctx, kbits, blkbits, ivbits, \
532 const OSSL_DISPATCH ossl_##aes##kbits##mode##_functions[] = { \
534 (void (*)(void))aes_##kbits##_##mode##_newctx }, \
543 (void (*)(void))aes_##kbits##_##mode##_get_params }, \