| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | EVP_EncryptInit.pod | 9 EVP_EncryptUpdate, 63 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, 146 EVP_EncryptUpdate() encrypts B<inl> bytes from the buffer B<in> and 163 calls to EVP_EncryptUpdate() should be made. 259 EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example). This function 286 EVP_EncryptInit_ex(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex() 345 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output 402 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() with the output 529 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, intext, strlen(intext))) {
|
| H A D | EVP_SealInit.pod | 44 as the EVP_EncryptUpdate() and EVP_EncryptFinal() routines, as
|
| H A D | EVP_CIPHER_meth_new.pod | 194 EVP_EncryptUpdate(), EVP_DecryptUpdate(), EVP_CipherFinal(),
|
| /freebsd-12.1/crypto/openssl/crypto/cms/ |
| H A D | cms_pwri.c | 264 if (!EVP_EncryptUpdate(ctx, out, &dummy, out, olen) in kek_wrap_key() 265 || !EVP_EncryptUpdate(ctx, out, &dummy, out, olen)) in kek_wrap_key()
|
| /freebsd-12.1/contrib/apr-util/crypto/ |
| H A D | apr_crypto_openssl.c | 585 if (!EVP_EncryptUpdate(&ctx->cipherCtx, (*out), &outl, in, inlen)) { 587 if (!EVP_EncryptUpdate(&ctx->cipherCtx, (*out), &outl,
|
| /freebsd-12.1/tools/tools/crypto/ |
| H A D | cryptocheck.c | 965 if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad, in openssl_gcm_encrypt() 971 if (EVP_EncryptUpdate(ctx, (u_char *)output, &outl, in openssl_gcm_encrypt() 1198 if (EVP_EncryptUpdate(ctx, NULL, &outl, NULL, size) != 1) in openssl_ccm_encrypt() 1203 if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad, in openssl_ccm_encrypt() 1209 if (EVP_EncryptUpdate(ctx, (u_char *)output, &outl, in openssl_ccm_encrypt()
|
| /freebsd-12.1/crypto/openssl/crypto/evp/ |
| H A D | evp_enc.c | 213 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate() 376 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_EncryptUpdate() function
|
| /freebsd-12.1/contrib/libarchive/libarchive/ |
| H A D | archive_cryptor.c | 339 r = EVP_EncryptUpdate(ctx->ctx, ctx->encr_buf, &outl, ctx->nonce, in aes_ctr_encrypt_counter()
|
| /freebsd-12.1/contrib/bsnmp/lib/ |
| H A D | snmpcrypto.c | 198 if (EVP_EncryptUpdate(ctx, pdu->scoped_ptr, &olen, pdu->scoped_ptr, in snmp_pdu_encrypt()
|
| /freebsd-12.1/contrib/wpa/src/crypto/ |
| H A D | crypto_openssl.c | 345 if (EVP_EncryptUpdate(c, crypt, &clen, plain, 16) != 1) { in aes_encrypt() 482 EVP_EncryptUpdate(ctx, data, &clen, data, data_len) == 1 && in aes_128_cbc_encrypt() 722 if (!EVP_EncryptUpdate(ctx->enc, crypt, &outl, plain, len)) in crypto_cipher_encrypt()
|
| /freebsd-12.1/crypto/openssl/apps/ |
| H A D | speed.c | 938 rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop() 978 EVP_EncryptUpdate(ctx, NULL, &outl, NULL, lengths[testnum]); in EVP_Update_loop_ccm() 980 EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_ccm() 1018 EVP_EncryptUpdate(ctx, NULL, &outl, aad, sizeof(aad)); in EVP_Update_loop_aead() 1019 EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_aead()
|
| /freebsd-12.1/crypto/openssl/include/openssl/ |
| H A D | evp.h | 506 # define EVP_SealUpdate(a,b,c,d,e) EVP_EncryptUpdate(a,b,c,d,e) 586 /*__owur*/ int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
|
| /freebsd-12.1/crypto/openssl/crypto/pem/ |
| H A D | pem_lib.c | 386 || !EVP_EncryptUpdate(ctx, data, &j, data, i) in PEM_ASN1_write_bio()
|
| /freebsd-12.1/crypto/openssl/crypto/engine/ |
| H A D | README | 27 [ ... use EVP_EncryptUpdate() and EVP_EncryptFinal() ...]
|
| /freebsd-12.1/secure/lib/libcrypto/ |
| H A D | Version.map | 1505 EVP_EncryptUpdate;
|
| H A D | Makefile.man | 1461 MLINKS+= EVP_EncryptInit.3 EVP_EncryptUpdate.3
|
| /freebsd-12.1/crypto/openssl/ssl/statem/ |
| H A D | statem_srvr.c | 3968 || !EVP_EncryptUpdate(ctx, encdata1, &len, senc, slen) in construct_stateless_ticket()
|
| /freebsd-12.1/crypto/openssl/ |
| H A D | NEWS | 191 o Fix EVP_EncryptUpdate overflow (CVE-2016-2106)
|
| H A D | CHANGES | 1131 *) The EVP_EncryptUpdate() function has had its return type changed from void 2212 *) Fix EVP_EncryptUpdate overflow 2214 An overflow can occur in the EVP_EncryptUpdate() function. If an attacker 2216 EVP_EncryptUpdate() with a partial block then a length check can overflow 2218 internal usage of the EVP_EncryptUpdate() function all usage is one of two 2219 forms. The first form is where the EVP_EncryptUpdate() call is known to be 2222 EVP_EncryptUpdate() can be seen from the code to be some small value and 2226 EVP_DecryptUpdate() can call EVP_EncryptUpdate() in certain code paths. 2227 Also EVP_CipherUpdate() is a synonym for EVP_EncryptUpdate(). All instances 10377 Change lots of functions like EVP_EncryptUpdate() to now return a
|
| /freebsd-12.1/crypto/openssl/crypto/err/ |
| H A D | openssl.txt | 750 EVP_F_EVP_ENCRYPTUPDATE:167:EVP_EncryptUpdate
|