Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/evp/
H A Devp_enc.c1010 if (ossl_unlikely(ctx->cipher->cupdate == NULL || blocksize < 1)) { in EVP_EncryptUpdate()
1015 ret = ctx->cipher->cupdate(ctx->algctx, out, &soutl, in EVP_EncryptUpdate()
1163 if (ossl_unlikely(ctx->cipher->cupdate == NULL || blocksize < 1)) { in EVP_DecryptUpdate()
1167 ret = ctx->cipher->cupdate(ctx->algctx, out, &soutl, in EVP_DecryptUpdate()
1948 if (cipher->cupdate != NULL) in evp_cipher_from_algorithm()
1950 cipher->cupdate = OSSL_FUNC_cipher_update(fns); in evp_cipher_from_algorithm()
H A Devp_lib.c409 ret = ctx->cipher->cupdate(ctx->algctx, out, &outl, in EVP_Cipher()
/freebsd/crypto/openssl/include/crypto/
H A Devp.h342 OSSL_FUNC_cipher_update_fn *cupdate; member