Home
last modified time | relevance | path

Searched refs:tlsmacsize (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_null.c20 size_t tlsmacsize; member
73 if (!ctx->enc && ctx->tlsmacsize > 0) { in null_cipher()
78 if (inl < ctx->tlsmacsize) in null_cipher()
80 ctx->tlsmac = in + inl - ctx->tlsmacsize; in null_cipher()
81 inl -= ctx->tlsmacsize; in null_cipher()
140 && !OSSL_PARAM_set_octet_ptr(p, ctx->tlsmac, ctx->tlsmacsize)) { in null_get_ctx_params()
168 if (!OSSL_PARAM_get_size_t(p, &ctx->tlsmacsize)) { in null_set_ctx_params()
H A Dciphercommon.c330 ctx->tlsmacsize, 0)) { in ossl_cipher_generic_block_update()
518 if (ctx->tlsmacsize > 0) { in ossl_cipher_generic_stream_update()
519 if (*outl < ctx->tlsmacsize) in ossl_cipher_generic_stream_update()
522 ctx->tlsmac = out + *outl - ctx->tlsmacsize; in ossl_cipher_generic_stream_update()
523 *outl -= ctx->tlsmacsize; in ossl_cipher_generic_stream_update()
615 && !OSSL_PARAM_set_octet_ptr(p, ctx->tlsmac, ctx->tlsmacsize)) { in ossl_cipher_generic_get_ctx_params()
659 if (!OSSL_PARAM_get_size_t(p, &ctx->tlsmacsize)) { in ossl_cipher_generic_set_ctx_params()
H A Dcipher_chacha20.c77 dupctx->base.tlsmacsize); in chacha20_dupctx()
H A Dcipher_aes_wrp.c80 dctx->base.tlsmacsize); in aes_wrap_dupctx()
H A Dcipher_chacha20_poly1305.c72 dctx->base.tlsmacsize); in chacha20_poly1305_dupctx()
/freebsd/crypto/openssl/providers/implementations/include/prov/
H A Dciphercommon.h80 size_t tlsmacsize; /* Size of the TLS MAC */
73 size_t tlsmacsize; /* Size of the TLS MAC */ global() member