/openssl-master/test/ssl-tests/ |
A D | 21-key-update.cnf | 5 test-0 = 0-update-key-client-update-not-requested 6 test-1 = 1-update-key-server-update-not-requested 7 test-2 = 2-update-key-client-update-requested 8 test-3 = 3-update-key-server-update-requested 11 [0-update-key-client-update-not-requested] 14 [0-update-key-client-update-not-requested-ssl] 37 [1-update-key-server-update-not-requested] 63 [2-update-key-client-update-requested] 66 [2-update-key-client-update-requested-ssl] 89 [3-update-key-server-update-requested] [all …]
|
A D | 21-key-update.cnf.in | 19 name => "update-key-client-update-not-requested", 30 name => "update-key-server-update-not-requested", 41 name => "update-key-client-update-requested", 52 name => "update-key-server-update-requested",
|
/openssl-master/ |
A D | HACKING.md | 15 make update 19 `make update` ensures that your functions declarations are added to 26 after running `make update` to ensure that documentation has correct format. 28 `make update` also generates files related to OIDs (in the `crypto/objects/` 31 generated files need to be removed and regenerated using `make update`.
|
/openssl-master/doc/man3/ |
A D | SSL_key_update.pod | 25 SSL_key_update() schedules an update of the keys for the current TLS connection. 31 peer to additionally update its sending keys. It is an error if B<updatetype> is 36 needs to ensure that the writing of data has been completed. The key update 39 can be called to force the update to take place immediately. 41 SSL_get_key_update_type() can be used to determine whether a key update 43 update operation will be returned if there is one, or SSL_KEY_UPDATE_NONE 85 SSL_get_key_update_type() returns the update type of the pending key update
|
A D | EVP_MD_meth_new.pod | 34 int EVP_MD_meth_set_update(EVP_MD *md, int (*update)(EVP_MD_CTX *ctx, 134 EVP_MD_meth_set_update() sets the digest update function for B<md>. 135 The digest update function is called by EVP_Digest(), EVP_DigestUpdate() and
|
A D | X509_sign.pod | 44 signature and signing will always update the encoding.
|
A D | EVP_DigestInit.pod | 130 int (*update)(EVP_MD_CTX *ctx, 391 Sets the update function for I<ctx> to I<update>. 393 update function from the B<EVP_MD> type specified at initialization is used. 397 Returns the update function for I<ctx>. 533 This flag instructs the digest to optimize for one update only, if possible.
|
A D | SSL_CTX_set_num_tickets.pod | 42 SSL_verify_client_post_handshake() to update the number of tickets that will be
|
A D | BN_BLINDING_new.pod | 78 automatic update of the B<BN_BLINDING> parameters after each use
|
A D | d2i_PrivateKey.pod | 89 All the functions that operate on data in memory update the data pointer I<*pp>
|
A D | SSL_CTX_set_session_ticket_cb.pod | 53 update the data placed into the session ticket. However, given that sessions
|
/openssl-master/crypto/evp/ |
A D | m_null.c | 22 static int update(EVP_MD_CTX *ctx, const void *data, size_t count) in update() function 39 update,
|
A D | legacy_meth.h | 39 #define LEGACY_EVP_MD_METH_TABLE(init, update, final, ctrl, blksz) \ argument 40 init, update, final, NULL, NULL, blksz, 0, ctrl
|
A D | evp_lib.c | 887 int EVP_MD_meth_set_update(EVP_MD *md, int (*update)(EVP_MD_CTX *ctx, in EVP_MD_meth_set_update() 891 if (md->update != NULL) in EVP_MD_meth_set_update() 894 md->update = update; in EVP_MD_meth_set_update() 957 return md->update; in EVP_MD_meth_get_update() 1041 return ctx->update; in EVP_MD_CTX_update_fn() 1045 int (*update) (EVP_MD_CTX *ctx, in EVP_MD_CTX_set_update_fn() 1048 ctx->update = update; in EVP_MD_CTX_set_update_fn()
|
A D | mac_meth.c | 96 if (mac->update != NULL) in evp_mac_from_algorithm() 98 mac->update = OSSL_FUNC_mac_update(fns); in evp_mac_from_algorithm()
|
A D | m_sigver.c | 21 static int update(EVP_MD_CTX *ctx, const void *data, size_t datalen) in update() function 330 ctx->update = update; in do_sigver_init() 341 ctx->update = update; in do_sigver_init()
|
A D | digest.c | 314 ctx->update = type->update; in evp_md_init_internal() 395 return ctx->update(ctx, data, count); in EVP_DigestUpdate() 599 out->update = in->update; in EVP_MD_CTX_copy_ex()
|
A D | mac_lib.c | 126 return ctx->meth->update(ctx->algctx, data, datalen); in EVP_MAC_update()
|
A D | evp_local.h | 26 int (*update) (EVP_MD_CTX *ctx, const void *data, size_t count); member
|
/openssl-master/test/ |
A D | README-external.md | 16 $ git submodule update --init 76 $ git submodule update --init 93 To update the commit for any of the above test suites: 97 $ git submodule update --init --recursive 112 - Add/commit/push the update
|
/openssl-master/test/recipes/30-test_evp_data/ |
A D | evppkey_ecx.txt | 279 # Make sure update calls return an error 496 # Make sure update calls return an error
|
/openssl-master/doc/man7/ |
A D | EVP_MAC-KMAC.pod | 126 /* The update may be called multiple times here for streamed input */
|
A D | des_modes.pod | 44 not update the IV); use des_ncbc_encrypt() instead.
|
/openssl-master/include/crypto/ |
A D | evp.h | 212 OSSL_FUNC_mac_update_fn *update; member 257 int (*update) (EVP_MD_CTX *ctx, const void *data, size_t count); member
|
/openssl-master/doc/internal/man3/ |
A D | evp_generic_fetch.pod | 264 ok = c->foo->update(c->provctx, out, inl, &outl, in, inl);
|