/openssl/crypto/bn/ |
H A D | bn_ctx.c | 33 BN_POOL_ITEM *head, *current, *tail; member 292 p->head = p->current = p->tail = NULL; in BN_POOL_init() 305 p->current = p->head->next; in BN_POOL_finish() 307 p->head = p->current; in BN_POOL_finish() 332 p->head = p->current = p->tail = item; in BN_POOL_get() 336 p->current = item; in BN_POOL_get() 345 p->current = p->head; in BN_POOL_get() 347 p->current = p->current->next; in BN_POOL_get() 348 return p->current->vals + ((p->used++) % BN_CTX_POOL_SIZE); in BN_POOL_get() 357 bn_check_top(p->current->vals + offset); in BN_POOL_release() [all …]
|
/openssl/ssl/ |
H A D | priority_queue.c | 88 static ossl_inline size_t compute_pqueue_growth(size_t target, size_t current) in compute_pqueue_growth() argument 92 while (current < target) { in compute_pqueue_growth() 93 if (current >= max_nodes) in compute_pqueue_growth() 96 current = safe_muldiv_size_t(current, 8, 5, &err); in compute_pqueue_growth() 99 if (current >= max_nodes) in compute_pqueue_growth() 100 current = max_nodes; in compute_pqueue_growth() 102 return current; in compute_pqueue_growth()
|
H A D | ssl_sess.c | 1206 SSL_SESSION *current; in SSL_CTX_flush_sessions_ex() local 1225 current = s->session_cache_tail; in SSL_CTX_flush_sessions_ex() 1226 if (t == 0 || sess_timedout(timeout, current)) { in SSL_CTX_flush_sessions_ex() 1227 lh_SSL_SESSION_delete(s->sessions, current); in SSL_CTX_flush_sessions_ex() 1228 SSL_SESSION_list_remove(s, current); in SSL_CTX_flush_sessions_ex() 1229 current->not_resumable = 1; in SSL_CTX_flush_sessions_ex() 1231 s->remove_session_cb(s, current); in SSL_CTX_flush_sessions_ex() 1239 if (sk == NULL || !sk_SSL_SESSION_push(sk, current)) in SSL_CTX_flush_sessions_ex() 1240 SSL_SESSION_free(current); in SSL_CTX_flush_sessions_ex()
|
/openssl/doc/man3/ |
H A D | SSL_CTX_add1_chain_cert.pod | 42 associated with the current certificate of B<ctx> to B<sk>. 45 certificate B<x509> to the chain associated with the current certificate of 48 SSL_CTX_get0_chain_certs() retrieves the chain associated with the current 52 current certificate of B<ctx>. (This is implemented by calling 70 Each of these functions operates on the I<current> end entity 74 SSL_CTX_select_current_cert() selects B<x509> as the current end entity 83 SSL_CTX_set_current_cert() changes the current certificate to a value based 86 certificate after the current certificate. These two operations can be 91 this option sets that certificate to the current certificate and returns 1. 93 be sent) 2 is returned and the current certificate is unchanged. If B<ssl> [all …]
|
H A D | SSL_get0_group_name.pod | 6 agreement of the current TLS session establishment 17 the key agreement of the current TLS session establishment. 23 the key agreement of the current TLS session establishment.
|
H A D | X509_cmp_time.pod | 26 I<asn1_time> with the current time, expressed as time_t. 30 B<X509_V_FLAG_USE_CHECK_TIME>; else the current time is used as reference time. 43 In all methods, if I<in_tm> is NULL, the current time, expressed as 50 I<offset_sec> after the current time. It is equivalent to calling 61 is earlier than, or equal to, I<in_tm> (resp. current time), and 1
|
H A D | SSL_get_extms_support.pod | 15 SSL_get_extms_support() indicates whether the current session used extended 22 SSL_get_extms_support() returns 1 if the current session used extended
|
H A D | X509_STORE_CTX_get_error.pod | 53 X509_STORE_CTX_get_current_cert() returns the current certificate in 54 I<ctx>. If an error occurred, the current certificate will be the one 154 current time. 159 current time. 249 did not match the issuer name of the current certificate. 254 The current candidate issuer certificate was rejected because its subject key 255 identifier was present and did not match the authority key identifier current 261 The current candidate issuer certificate was rejected because its issuer name 263 the current certificate. 477 In versions of OpenSSL before 1.0 the current certificate returned by [all …]
|
H A D | SSL_state_string.pod | 16 SSL_state_string() returns an abbreviated string indicating the current state 19 SSL_state_string_long() returns a descriptive string indicating the current state of
|
H A D | SSL_rstate_string.pod | 16 SSL_rstate_string() returns a 2 letter string indicating the current read state 19 SSL_rstate_string_long() returns a string indicating the current read state of
|
H A D | BIO_f_prefix.pod | 38 BIO_get_indent() gets the current indentation. 55 BIO_get_indent() returns the current indentation, or a negative value for failure.
|
H A D | BN_BLINDING_new.pod | 65 structure is owned by the current thread. This is to help users 68 BN_BLINDING_set_current_thread() sets the current thread as the 98 BN_BLINDING_is_current_thread() returns 1 if the current thread owns
|
H A D | ERR_clear_error.pod | 15 ERR_clear_error() empties the current thread's error queue.
|
/openssl/crypto/stack/ |
H A D | stack.c | 159 static ossl_inline int compute_growth(int target, int current) in compute_growth() argument 163 while (current < target) { in compute_growth() 164 if (current >= max_nodes) in compute_growth() 167 current = safe_muldiv_int(current, 8, 5, &err); in compute_growth() 170 if (current >= max_nodes) in compute_growth() 171 current = max_nodes; in compute_growth() 173 return current; in compute_growth()
|
/openssl/crypto/asn1/ |
H A D | asn1_lib.c | 439 ASN1_UTF8STRING *current; in ossl_sk_ASN1_UTF8STRING2text() local 449 current = sk_ASN1_UTF8STRING_value(text, i); in ossl_sk_ASN1_UTF8STRING2text() 452 length += ASN1_STRING_length(current); in ossl_sk_ASN1_UTF8STRING2text() 461 current = sk_ASN1_UTF8STRING_value(text, i); in ossl_sk_ASN1_UTF8STRING2text() 462 length = ASN1_STRING_length(current); in ossl_sk_ASN1_UTF8STRING2text() 467 strncpy(p, (const char *)ASN1_STRING_get0_data(current), length); in ossl_sk_ASN1_UTF8STRING2text()
|
/openssl/test/ |
H A D | README.md | 71 with which you can specify a set of tests to be performed. With a "current 74 alltests The current set of tests becomes the whole set of available 77 xxx Adds the test 'xxx' to the current set of tests. 79 -xxx Removes 'xxx' from the current set of tests. If this is the 80 first token in the list, the current set of tests is first 84 nn Adds the test group 'nn' (which is a number) to the current 87 -nn Removes the test group 'nn' from the current set of tests. 88 If this is the first token in the list, the current set of
|
H A D | test.cnf | 16 serial = $dir/serial # The current serial number 17 crl = $dir/crl.pem # The current CRL
|
H A D | CAtsa.cnf | 34 serial = $dir/serial # The current serial number 128 serial = $dir/tsa_serial # The current serial number (mandatory) 154 serial = $dir/tsa_serial # The current serial number (mandatory)
|
/openssl/test/recipes/90-test_includes_data/conf-includes/ |
H A D | includes1.cnf | 21 serial = $dir/serial # The current serial number 22 crl = $dir/crl.pem # The current CRL
|
/openssl/doc/internal/man3/ |
H A D | ossl_global_properties_no_mirrored.pod | 30 properties from a parent library context is allowed for the current library 34 properties from a parent library context for the current library context.
|
/openssl/crypto/ec/curve448/ |
H A D | curve448.c | 560 uint64_t current = scalar->limb[0] & 0xFFFF; in recode_wnaf() local 580 current += (uint32_t)((scalar->limb[w / B_OVER_16] in recode_wnaf() 584 while (current & 0xFFFF) { in recode_wnaf() 585 uint32_t pos = NUMTRAILINGZEROS((uint32_t)current); in recode_wnaf() 586 uint32_t odd = (uint32_t)current >> pos; in recode_wnaf() 599 current -= delta * (1 << pos); in recode_wnaf() 604 current >>= 16; in recode_wnaf() 606 assert(current == 0); in recode_wnaf()
|
/openssl/ |
H A D | ACKNOWLEDGEMENTS.md | 4 Please see our [Thanks!][] page for the current acknowledgements.
|
/openssl/crypto/bio/ |
H A D | bss_dgram_pair.c | 1133 static ossl_inline size_t compute_rbuf_growth(size_t target, size_t current) in compute_rbuf_growth() argument 1137 while (current < target) { in compute_rbuf_growth() 1138 if (current >= max_rbuf_size) in compute_rbuf_growth() 1141 current = safe_muldiv_size_t(current, 8, 5, &err); in compute_rbuf_growth() 1144 if (current >= max_rbuf_size) in compute_rbuf_growth() 1145 current = max_rbuf_size; in compute_rbuf_growth() 1147 return current; in compute_rbuf_growth()
|
/openssl/dev/ |
H A D | release.sh | 658 B<release.sh> creates an OpenSSL release, given current worktree conditions. 659 It will refuse to work unless the current branch is C<master> or a release 682 the current state is "in development" or that alpha releases are ongoing. 689 Use together with B<--alpha> to switch to beta releases after the current 737 Force execution. Precisely, the check that the current branch is C<master> 778 The indicator of the current state of the branch. The value may be one pf:
|
/openssl/doc/man7/ |
H A D | des_modes.pod | 60 current and all preceding plaintext blocks and therefore blocks can not 70 An error will affect the current and the following ciphertext blocks. 92 current and all preceding variables and therefore j-bit variables are 117 An error will affect the current and the following ciphertext variables.
|