Home
last modified time | relevance | path

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

/openssl-master/demos/cipher/
A Daesccm.c200 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_ct))) in aes_ccm_decrypt()
204 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata))) in aes_ccm_decrypt()
208 rv = EVP_DecryptUpdate(ctx, outbuf, &outlen, ccm_ct, sizeof(ccm_ct)); in aes_ccm_decrypt()
A Daesgcm.c182 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad, sizeof(gcm_aad))) in aes_gcm_decrypt()
186 if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, gcm_ct, sizeof(gcm_ct))) in aes_gcm_decrypt()
/openssl-master/crypto/cms/
A Dcms_pwri.c205 if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl, in kek_unwrap_key()
212 || !EVP_DecryptUpdate(ctx, tmp, &outl, in kek_unwrap_key()
215 || !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen) in kek_unwrap_key()
220 || !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen)) in kek_unwrap_key()
A Dcms_env.c945 || !EVP_DecryptUpdate(ctx, ukey, &ukeylen, in cms_RecipientInfo_kekri_decrypt()
/openssl-master/test/
A Daesgcmtest.c80 && TEST_true(EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad, in do_decrypt()
82 && TEST_true(EVP_DecryptUpdate(ctx, pt, &ptlen, ct, in do_decrypt()
A Ddestest.c758 || !TEST_true(EVP_DecryptUpdate(ctx, p_txt, &plen_upd, in test_des_key_wrap()
A Devp_extra_test.c2663 || !TEST_true(EVP_DecryptUpdate(ctx, plaintext, &ptlen, ciphertext, in test_decrypt_null_chunks()
2669 || !TEST_true(EVP_DecryptUpdate(ctx, plaintext + ptlen, &tmp, NULL, in test_decrypt_null_chunks()
2672 || !TEST_true(EVP_DecryptUpdate(ctx, plaintext + ptlen, &tmp, in test_decrypt_null_chunks()
/openssl-master/doc/life-cycles/
A Dcipher.dot30 d_initialised -> d_updated [label="EVP_DecryptUpdate", weight=2];
31 d_updated -> d_updated [label="EVP_DecryptUpdate"];
/openssl-master/doc/man3/
A DEVP_OpenInit.pod29 as the EVP_DecryptUpdate() and EVP_DecryptFinal() routines, as
A DEVP_EncryptInit.pod17 EVP_DecryptUpdate,
127 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
392 =item EVP_DecryptInit_ex2(), EVP_DecryptInit_ex(), EVP_DecryptUpdate()
399 decrypted data buffer I<out> passed to EVP_DecryptUpdate() should have
603 "used" (before any EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example).
892 EVP_DecryptUpdate() and EVP_CipherUpdate() is the number of bits or number of bytes.
1270 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output
1327 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() with the output
1362 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1389 before any EVP_DecryptUpdate() call). For SIV mode the taglen must be 16.
[all …]
A DEVP_CIPHER_meth_new.pod198 EVP_EncryptUpdate(), EVP_DecryptUpdate(), EVP_CipherFinal(),
/openssl-master/doc/man7/
A Dlife_cycle-cipher.pod85 | EVP_DecryptUpdate | EVP_CipherUpdate EVP_EncryptUpdate |
94 …| updated | EVP_DecryptUpdate | | | updated |-----…
136EVP_DecryptUpdate updated up…
227 <tr><th style="border:1px solid" align="left">EVP_DecryptUpdate</th>
A Dprovider-cipher.pod153 L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)>.
A Dmigration_guide.pod1031 L<EVP_DecryptInit_ex(3)>, L<EVP_DecryptUpdate(3)> and L<EVP_DecryptFinal_ex(3)>.
/openssl-master/crypto/pem/
A Dpvkfmt.c884 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body_key()
894 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body_key()
A Dpem_lib.c458 ok = EVP_DecryptUpdate(ctx, data, &ilen, data, ilen); in PEM_do_header()
/openssl-master/crypto/crmf/
A Dcrmf_lib.c687 || !EVP_DecryptUpdate(evp_ctx, outbuf, &outlen, in OSSL_CRMF_ENCRYPTEDVALUE_get1_encCert()
/openssl-master/crypto/evp/
A Devp_enc.c407 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
741 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_DecryptUpdate() function
/openssl-master/apps/
A Dspeed.c731 rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop()
773 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_ccm()
809 (void)EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad)); in EVP_Update_loop_aead()
810 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_aead()
/openssl-master/include/openssl/
A Devp.h660 # define EVP_OpenUpdate(a,b,c,d,e) EVP_DecryptUpdate(a,b,c,d,e)
776 /*__owur*/ int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
/openssl-master/ssl/
A Dt1_lib.c1919 if (sdec == NULL || EVP_DecryptUpdate(ctx, sdec, &slen, p, in tls_decrypt_ticket()
/openssl-master/
A DNEWS.md126 EVP_DecryptUpdate functions ([CVE-2021-23840])
A DCHANGES.md1641 Fixed the EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate
4981 EVP_DecryptUpdate() can call EVP_EncryptUpdate() in certain code paths.
6183 EVP_DecryptUpdate() can call EVP_EncryptUpdate() in certain code paths.
/openssl-master/util/
A Dlibcrypto.num2979 EVP_DecryptUpdate 3046 3_0_0 EXIST::FUNCTION:

Completed in 93 milliseconds