/openssl/test/ssl-tests/ |
H 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 …]
|
H 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/doc/man3/ |
H 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 37 update will not take place until the next time an IO operation such as 39 SSL_do_handshake() 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 82 SSL_key_update() can also be used to perform a key update when using QUIC. The 84 automatically when needed. Since a locally initiated QUIC key update always 85 causes a peer to also trigger a key update, passing 90 performed, and other QUIC protocol rules govern how frequently QUIC key update [all …]
|
/openssl/ |
H 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`.
|
H A D | .gitmodules | 12 update = rebase
|
/openssl/.github/workflows/ |
H A D | run-checker-daily.yml | 144 run: git submodule update --init --depth 1 fuzz/corpora 163 run: git submodule update --init --depth 1 fuzz/corpora 166 sudo apt-get update 211 run: git submodule update --init --depth 1 fuzz/corpora 228 sudo apt-get update 233 run: git submodule update --init --depth 1 fuzz/corpora 250 sudo apt-get update 255 run: git submodule update --init --depth 1 fuzz/corpora 272 sudo apt-get update 295 sudo apt-get update [all …]
|
H A D | ci.yml | 33 sudo apt-get update 42 - name: make update 43 run: make update 81 run: git submodule update --init --depth 1 fuzz/corpora 112 run: git submodule update --init --depth 1 fuzz/corpora 159 run: git submodule update --init --depth 1 fuzz/corpora 181 run: git submodule update --init --depth 1 fuzz/corpora 203 run: git submodule update --init --depth 1 fuzz/corpora 229 run: git submodule update --init --depth 1 fuzz/corpora 573 sudo apt-get update [all …]
|
H A D | os-zoo.yml | 60 install: apt-get update && apt-get install -y gcc make perl 62 install: apt-get update && apt-get install -y gcc make perl 64 install: apt-get update && apt-get install -y gcc make perl 66 install: apt-get update && apt-get install -y gcc make perl 68 install: apt-get update && apt-get install -y gcc make perl 110 run: git submodule update --init --depth 1 fuzz/corpora 133 run: git submodule update --init --depth 1 fuzz/corpora
|
H A D | compiler-zoo.yml | 101 sudo apt-get update 118 sudo apt-get update 123 run: git submodule update --init --depth 1 fuzz/corpora
|
H A D | run_quic_interop.yml | 26 sudo apt-get update
|
/openssl/crypto/evp/ |
H A D | m_null.c | 22 static int update(EVP_MD_CTX *ctx, const void *data, size_t count) in update() function 39 update,
|
H 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
|
H A D | evp_lib.c | 916 int EVP_MD_meth_set_update(EVP_MD *md, int (*update)(EVP_MD_CTX *ctx, in EVP_MD_meth_set_update() 920 if (md->update != NULL) in EVP_MD_meth_set_update() 923 md->update = update; in EVP_MD_meth_set_update() 986 return md->update; in EVP_MD_meth_get_update() 1098 return ctx->update; in EVP_MD_CTX_update_fn() 1102 int (*update) (EVP_MD_CTX *ctx, in EVP_MD_CTX_set_update_fn() 1105 ctx->update = update; in EVP_MD_CTX_set_update_fn()
|
H A D | mac_meth.c | 102 if (mac->update != NULL) in evp_mac_from_algorithm() 104 mac->update = OSSL_FUNC_mac_update(fns); in evp_mac_from_algorithm()
|
H A D | digest.c | 343 ctx->update = type->update; in evp_md_init_internal() 429 return ctx->update != NULL ? ctx->update(ctx, data, count) : 0; in EVP_DigestUpdate() 629 out->update = in->update; in EVP_MD_CTX_copy_ex() 707 out->update = in->update; in EVP_MD_CTX_copy_ex()
|
H A D | m_sigver.c | 19 static int update(EVP_MD_CTX *ctx, const void *data, size_t datalen) in update() function 323 ctx->update = update; in do_sigver_init() 334 ctx->update = update; in do_sigver_init()
|
/openssl/test/ |
H A D | README-external.md | 16 $ git submodule update --init 76 $ git submodule update --init 99 $ git submodule update --init 128 $ git submodule update --init 153 To update the commit for any of the above test suites: 157 $ git submodule update --init --recursive 172 - Add/commit/push the update
|
/openssl/dev/release-aux/ |
H A D | README.md | 6 This is the main version and state update logic... you could say 21 that instructs it what update to do.
|
/openssl/doc/HOWTO/ |
H A D | documenting-functions-and-macros.md | 44 this will update `doc/build.info`. 120 $ make update 135 After running `make update`, you can use `git diff` to check the outcome: 152 $ git commit -a -m "make update" 156 becomes necessary to rerun `make update`.
|
/openssl/test/quic-openssl-docker/ |
H A D | Dockerfile | 12 RUN apt-get update && apt-get install -y \ 21 git submodule update --init && \
|
/openssl/crypto/err/ |
H A D | README.md | 50 it is recommended to leverage `make update` for error code generation. 55 subsequent `make update` has no effect.
|
/openssl/.github/ |
H A D | dependabot.yml | 8 prefix: "Dependabot update\n\nCLA: trivial\n\n"
|
/openssl/dev/ |
H A D | release.sh | 112 --no-update ) 328 make update >&42 335 make update-fips-checksums >&42 649 B<--no-update> | 709 =item B<--no-update>
|
/openssl/doc/designs/quic-design/ |
H A D | glossary.md | 74 update occurs. 79 packets by a QRX or QTX. Due to the QUIC key update mechanism, multiple keyslots 86 **KU:** Key update. See also TXKU, RXKU. 238 **RXKU:** RX key update. The detected condition whereby a received packet 239 has a flipped Key Phase bit, meaning the peer has initiated a key update. 272 **TXKU:** TX key update. This refers to when a QTX signals a key update for the
|
/openssl/doc/man7/ |
H A D | EVP_MD-NULL.pod | 11 update and final methods.
|