Home
last modified time | relevance | path

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

/third_party/openssl/providers/implementations/ciphers/
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()
Dciphercommon.c321 ctx->tlsmacsize, 0)) { in ossl_cipher_generic_block_update()
499 if (ctx->tlsmacsize > 0) { in ossl_cipher_generic_stream_update()
500 if (*outl < ctx->tlsmacsize) in ossl_cipher_generic_stream_update()
503 ctx->tlsmac = out + *outl - ctx->tlsmacsize; in ossl_cipher_generic_stream_update()
504 *outl -= ctx->tlsmacsize; in ossl_cipher_generic_stream_update()
584 && !OSSL_PARAM_set_octet_ptr(p, ctx->tlsmac, ctx->tlsmacsize)) { in ossl_cipher_generic_get_ctx_params()
628 if (!OSSL_PARAM_get_size_t(p, &ctx->tlsmacsize)) { in ossl_cipher_generic_set_ctx_params()
/third_party/openssl/providers/implementations/include/prov/
Dciphercommon.h72 size_t tlsmacsize; /* Size of the TLS MAC */ member