Lines Matching refs:stream

41     } stream;  member
68 void (*stream) (const unsigned char *in, member
160 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in aesni_init_key()
166 dat->stream.cbc = (cbc128_f) aesni_cbc_encrypt; in aesni_init_key()
168 dat->stream.ctr = (ctr128_f) aesni_ctr32_encrypt_blocks; in aesni_init_key()
170 dat->stream.cbc = NULL; in aesni_init_key()
302 xctx->stream = aesni_xts_encrypt; in aesni_xts_init_key()
306 xctx->stream = aesni_xts_decrypt; in aesni_xts_init_key()
492 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in aes_t4_init_key()
496 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in aes_t4_init_key()
500 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in aes_t4_init_key()
513 dat->stream.cbc = (cbc128_f) aes128_t4_cbc_encrypt; in aes_t4_init_key()
515 dat->stream.ctr = (ctr128_f) aes128_t4_ctr32_encrypt; in aes_t4_init_key()
517 dat->stream.cbc = NULL; in aes_t4_init_key()
521 dat->stream.cbc = (cbc128_f) aes192_t4_cbc_encrypt; in aes_t4_init_key()
523 dat->stream.ctr = (ctr128_f) aes192_t4_ctr32_encrypt; in aes_t4_init_key()
525 dat->stream.cbc = NULL; in aes_t4_init_key()
529 dat->stream.cbc = (cbc128_f) aes256_t4_cbc_encrypt; in aes_t4_init_key()
531 dat->stream.ctr = (ctr128_f) aes256_t4_ctr32_encrypt; in aes_t4_init_key()
533 dat->stream.cbc = NULL; in aes_t4_init_key()
662 xctx->stream = NULL; in aes_t4_xts_init_key()
669 xctx->stream = aes128_t4_xts_encrypt; in aes_t4_xts_init_key()
672 xctx->stream = aes256_t4_xts_encrypt; in aes_t4_xts_init_key()
682 xctx->stream = aes128_t4_xts_decrypt; in aes_t4_xts_init_key()
685 xctx->stream = aes256_t4_xts_decrypt; in aes_t4_xts_init_key()
2422 dat->stream.cbc = NULL; in aes_init_key()
2425 dat->stream.cbc = (cbc128_f) HWAES_cbc_encrypt; in aes_init_key()
2433 dat->stream.cbc = (cbc128_f) ossl_bsaes_cbc_encrypt; in aes_init_key()
2440 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in aes_init_key()
2447 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in aes_init_key()
2455 dat->stream.cbc = NULL; in aes_init_key()
2458 dat->stream.cbc = (cbc128_f) HWAES_cbc_encrypt; in aes_init_key()
2463 dat->stream.ctr = (ctr128_f) HWAES_ctr32_encrypt_blocks; in aes_init_key()
2473 dat->stream.ctr = (ctr128_f) ossl_bsaes_ctr32_encrypt_blocks; in aes_init_key()
2480 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in aes_init_key()
2487 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in aes_init_key()
2491 dat->stream.ctr = (ctr128_f) AES_ctr32_encrypt; in aes_init_key()
2508 if (dat->stream.cbc) in aes_cbc_cipher()
2509 (*dat->stream.cbc) (in, out, len, &dat->ks, ctx->iv, in aes_cbc_cipher()
2621 if (dat->stream.ctr) in aes_ctr_cipher()
2625 &num, dat->stream.ctr); in aes_ctr_cipher()
3260 xctx->stream = enc ? AES_xts_encrypt : AES_xts_decrypt; in aes_xts_init_key()
3262 xctx->stream = NULL; in aes_xts_init_key()
3271 xctx->stream = HWAES_xts_encrypt; in aes_xts_init_key()
3277 xctx->stream = HWAES_xts_decrypt; in aes_xts_init_key()
3290 xctx->stream = enc ? ossl_bsaes_xts_encrypt : ossl_bsaes_xts_decrypt; in aes_xts_init_key()
3358 if (xctx->stream) in aes_xts_cipher()
3359 (*xctx->stream) (in, out, len, in aes_xts_cipher()