Home
last modified time | relevance | path

Searched refs:max_l_index (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/crypto/modes/
H A Docb128.c101 if (idx >= ctx->max_l_index) { in ocb_lookup_l()
112 ctx->max_l_index += (idx - ctx->max_l_index + 4) & ~3; in ocb_lookup_l()
113 tmp_ptr = OPENSSL_realloc(ctx->l, ctx->max_l_index * sizeof(OCB_BLOCK)); in ocb_lookup_l()
157 ctx->max_l_index = 5; in CRYPTO_ocb128_init()
158 if ((ctx->l = OPENSSL_malloc(ctx->max_l_index * 16)) == NULL) in CRYPTO_ocb128_init()
203 if ((dest->l = OPENSSL_malloc(src->max_l_index * 16)) == NULL) in CRYPTO_ocb128_copy_ctx()
553 OPENSSL_clear_free(ctx->l, ctx->max_l_index * 16); in CRYPTO_ocb128_cleanup()
/freebsd/crypto/openssl/include/crypto/
H A Dmodes.h199 size_t max_l_index; member