Home
last modified time | relevance | path

Searched refs:EVP_EncryptUpdate (Results 1 – 25 of 33) sorted by relevance

12

/openssl-master/demos/cipher/
A Daesccm.c116 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_pt))) in aes_ccm_encrypt()
120 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata))) in aes_ccm_encrypt()
124 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, ccm_pt, sizeof(ccm_pt))) in aes_ccm_encrypt()
A Daesgcm.c110 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, gcm_aad, sizeof(gcm_aad))) in aes_gcm_encrypt()
114 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, gcm_pt, sizeof(gcm_pt))) in aes_gcm_encrypt()
/openssl-master/test/
A Daesgcmtest.c52 && TEST_true(EVP_EncryptUpdate(ctx, NULL, &outlen, gcm_aad, in do_encrypt()
54 && TEST_true(EVP_EncryptUpdate(ctx, ct, ct_len, gcm_pt, in do_encrypt()
A Devp_libctx_test.c369 || !TEST_true(EVP_EncryptUpdate(ctx, out1, &out1_len, in, sizeof(in))) in test_cipher_reinit()
371 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out2, &out2_len, in, sizeof(in)), in test_cipher_reinit()
375 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out3, &out3_len, in, sizeof(in)), in test_cipher_reinit()
455 || !TEST_true(EVP_EncryptUpdate(ctx, out1, &out1_len, in, in_len)) in test_cipher_reinit_partialupdate()
457 || !TEST_true(EVP_EncryptUpdate(ctx, out2, &out2_len, in, in_len))) in test_cipher_reinit_partialupdate()
465 || !TEST_true(EVP_EncryptUpdate(ctx, out3, &out3_len, in, in_len))) in test_cipher_reinit_partialupdate()
A Devp_extra_test.c2646 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &ctlen, msg, in test_decrypt_null_chunks()
2649 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext + ctlen, &tmp, NULL, in test_decrypt_null_chunks()
2652 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext + ctlen, &tmp, in test_decrypt_null_chunks()
3024 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &len, msg, in test_evp_iv_aes()
3135 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &len, msg, in test_evp_iv_des()
4189 if (!TEST_true(EVP_EncryptUpdate(ctx2, buf, &len, msg, sizeof(msg))) in test_cipher_with_engine()
A Dthreadstest.c369 || !TEST_true(EVP_EncryptUpdate(cipherctx, out, &ciphoutl, in thread_general_worker()
A Ddestest.c741 || !TEST_true(EVP_EncryptUpdate(ctx, c_txt, &clen_upd, in test_des_key_wrap()
/openssl-master/doc/life-cycles/
A Dcipher.dot36 e_initialised -> e_updated [label="EVP_EncryptUpdate", weight=2];
37 e_updated -> e_updated [label="EVP_EncryptUpdate"];
/openssl-master/providers/implementations/macs/
A Dgmac_prov.c137 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, data, INT_MAX)) in gmac_update()
142 return EVP_EncryptUpdate(ctx, NULL, &outlen, data, datalen); in gmac_update()
/openssl-master/crypto/cms/
A Dcms_pwri.c274 if (!EVP_EncryptUpdate(ctx, out, &dummy, out, olen) in kek_wrap_key()
275 || !EVP_EncryptUpdate(ctx, out, &dummy, out, olen)) in kek_wrap_key()
A Dcms_env.c863 || !EVP_EncryptUpdate(ctx, wkey, &wkeylen, ec->key, ec->keylen) in cms_RecipientInfo_kekri_encrypt()
/openssl-master/doc/man3/
A DRC4_set_key.pod23 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
A DEVP_EncryptInit.pod13 EVP_EncryptUpdate,
118 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
362 =item EVP_EncryptUpdate()
386 calls to EVP_EncryptUpdate() should be made.
603 "used" (before any EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example).
891 Determines if the input length I<inl> passed to EVP_EncryptUpdate(),
1189 EVP_EncryptInit_ex2(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex()
1270 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output
1362 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1394 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
[all …]
A DEVP_SealInit.pod44 as the EVP_EncryptUpdate() and EVP_EncryptFinal() routines, as
A DEVP_aes_128_gcm.pod164 only be one L<EVP_EncryptUpdate(3)> call per L<EVP_EncryptInit_ex(3)> call (and
A DBF_encrypt.pod37 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
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 |
100 v v v EVP_EncryptUpdate
138EVP_EncryptUpdate
238 <tr><th style="border:1px solid" align="left">EVP_EncryptUpdate</th>
A Dprovider-cipher.pod62 L<EVP_EncryptUpdate(3)> and L<EVP_EncryptFinal(3)> (as well as the decrypt
153 L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)>.
/openssl-master/providers/implementations/kdfs/
A Dkrb5kdf.c408 ret = EVP_EncryptUpdate(ctx, cipherblock, &olen, in KRB5KDF()
/openssl-master/crypto/modes/
A Dsiv128.c137 return EVP_EncryptUpdate(ctx, out, &out_len, in, out_len); in siv128_do_encrypt()
/openssl-master/crypto/evp/
A Devp_enc.c405 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
594 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_EncryptUpdate() function
/openssl-master/apps/
A Dspeed.c739 rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop()
778 (void)EVP_EncryptUpdate(ctx, NULL, &outl, NULL, lengths[testnum]); in EVP_Update_loop_ccm()
780 (void)EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_ccm()
816 (void)EVP_EncryptUpdate(ctx, NULL, &outl, aad, sizeof(aad)); in EVP_Update_loop_aead()
817 (void)EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_aead()
/openssl-master/crypto/pem/
A Dpem_lib.c392 || !EVP_EncryptUpdate(ctx, data, &j, data, i) in PEM_ASN1_write_bio()
A Dpvkfmt.c1084 if (!EVP_EncryptUpdate(cctx, p, &enctmplen, p, pklen - 8)) in i2b_PVK()

Completed in 56 milliseconds

12