Home
last modified time | relevance | path

Searched refs:EVP_DecryptUpdate (Results 1 – 19 of 19) sorted by relevance

/freebsd-12.1/crypto/openssl/crypto/cms/
H A Dcms_pwri.c196 if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl, in kek_unwrap_key()
203 || !EVP_DecryptUpdate(ctx, tmp, &outl, in kek_unwrap_key()
206 || !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen) in kek_unwrap_key()
211 || !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen)) in kek_unwrap_key()
/freebsd-12.1/crypto/openssl/doc/man3/
H A DEVP_EncryptInit.pod12 EVP_DecryptUpdate,
69 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
169 EVP_DecryptInit_ex(), EVP_DecryptUpdate() and EVP_DecryptFinal_ex() are the
174 passed to EVP_DecryptUpdate() should have sufficient room for
259 EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example). This function
289 EVP_DecryptInit_ex() and EVP_DecryptUpdate() return 1 for success and 0 for failure.
345 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output
402 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() with the output
H A DEVP_OpenInit.pod29 as the EVP_DecryptUpdate() and EVP_DecryptFinal() routines, as
H A DEVP_CIPHER_meth_new.pod194 EVP_EncryptUpdate(), EVP_DecryptUpdate(), EVP_CipherFinal(),
/freebsd-12.1/contrib/apr-util/crypto/
H A Dapr_crypto_openssl.c740 if (!EVP_DecryptUpdate(&ctx->cipherCtx, *out, &outl, in, inlen)) {
742 if (!EVP_DecryptUpdate(&ctx->cipherCtx, *out, &outl, (unsigned char *) in,
/freebsd-12.1/crypto/openssl/crypto/pem/
H A Dpvkfmt.c716 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body()
726 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body()
847 if (!EVP_DecryptUpdate(cctx, p, &enctmplen, p, pklen - 8)) in i2b_PVK()
H A Dpem_lib.c452 ok = EVP_DecryptUpdate(ctx, data, &ilen, data, ilen); in PEM_do_header()
/freebsd-12.1/crypto/openssl/crypto/evp/
H A Devp_enc.c215 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
443 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_DecryptUpdate() function
/freebsd-12.1/sbin/decryptcore/
H A Ddecryptcore.c239 if (EVP_DecryptUpdate(ctx, buf, &olen, buf, in decrypt()
/freebsd-12.1/contrib/bsnmp/lib/
H A Dsnmpcrypto.c232 if (EVP_DecryptUpdate(ctx, pdu->scoped_ptr, &olen, pdu->scoped_ptr, in snmp_pdu_decrypt()
/freebsd-12.1/contrib/wpa/src/crypto/
H A Dcrypto_openssl.c402 if (EVP_DecryptUpdate(c, plain, &plen, crypt, 16) != 1) { in aes_decrypt()
509 EVP_DecryptUpdate(ctx, data, &plen, data, data_len) == 1 && in aes_128_cbc_decrypt()
733 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len)) in crypto_cipher_decrypt()
/freebsd-12.1/tools/tools/crypto/
H A Dcryptocheck.c1062 if (EVP_DecryptUpdate(ctx, NULL, &outl, (const u_char *)aad, in openssl_gcm_decrypt()
1068 if (EVP_DecryptUpdate(ctx, (u_char *)output, &outl, in openssl_gcm_decrypt()
/freebsd-12.1/crypto/openssl/apps/
H A Dspeed.c930 rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop()
973 EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_ccm()
1011 EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad)); in EVP_Update_loop_aead()
1012 EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_aead()
/freebsd-12.1/crypto/openssl/include/openssl/
H A Devp.h505 # define EVP_OpenUpdate(a,b,c,d,e) EVP_DecryptUpdate(a,b,c,d,e)
599 /*__owur*/ int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
/freebsd-12.1/crypto/openssl/ssl/
H A Dt1_lib.c1440 if (sdec == NULL || EVP_DecryptUpdate(ctx, sdec, &slen, p, in tls_decrypt_ticket()
/freebsd-12.1/secure/lib/libcrypto/
H A DVersion.map1482 EVP_DecryptUpdate;
H A DMakefile.man1457 MLINKS+= EVP_EncryptInit.3 EVP_DecryptUpdate.3
/freebsd-12.1/crypto/openssl/crypto/err/
H A Dopenssl.txt745 EVP_F_EVP_DECRYPTUPDATE:166:EVP_DecryptUpdate
/freebsd-12.1/crypto/openssl/
H A DCHANGES2226 EVP_DecryptUpdate() can call EVP_EncryptUpdate() in certain code paths.