Searched refs:upper (Results 1 – 16 of 16) sorted by relevance
/openssl/crypto/rand/ |
H A D | rand_uniform.c | 25 uint32_t ossl_rand_uniform_uint32(OSSL_LIB_CTX *ctx, uint32_t upper, int *err) in ossl_rand_uniform_uint32() argument 33 if (!ossl_assert(upper > 0)) { in ossl_rand_uniform_uint32() 37 if (ossl_unlikely(upper == 1)) in ossl_rand_uniform_uint32() 56 prod = (uint64_t)upper * rand; in ossl_rand_uniform_uint32() 59 if (ossl_likely(f <= 1 + ~upper)) /* 1+~upper == -upper but compilers whine */ in ossl_rand_uniform_uint32() 81 prod = (uint64_t)upper * rand; in ossl_rand_uniform_uint32() 101 uint32_t ossl_rand_range_uint32(OSSL_LIB_CTX *ctx, uint32_t lower, uint32_t upper, in ossl_rand_range_uint32() argument 104 if (!ossl_assert(lower < upper)) { in ossl_rand_range_uint32() 108 return lower + ossl_rand_uniform_uint32(ctx, upper - lower, err); in ossl_rand_range_uint32()
|
/openssl/crypto/ffc/ |
H A D | ffc_key_validate.c | 102 int ossl_ffc_validate_private_key(const BIGNUM *upper, const BIGNUM *priv, in ossl_ffc_validate_private_key() argument 109 if (priv == NULL || upper == NULL) { in ossl_ffc_validate_private_key() 117 if (BN_cmp(priv, upper) >= 0) { in ossl_ffc_validate_private_key()
|
/openssl/include/crypto/ |
H A D | rand.h | 145 uint32_t ossl_rand_uniform_uint32(OSSL_LIB_CTX *ctx, uint32_t upper, int *err); 151 uint32_t ossl_rand_range_uint32(OSSL_LIB_CTX *ctx, uint32_t lower, uint32_t upper,
|
/openssl/crypto/dh/ |
H A D | dh_check.c | 281 BIGNUM *two_powN = NULL, *upper; in ossl_dh_check_priv_key() local 289 upper = dh->params.q; in ossl_dh_check_priv_key() 317 upper = two_powN; in ossl_dh_check_priv_key() 319 if (!ossl_ffc_validate_private_key(upper, priv_key, ret)) in ossl_dh_check_priv_key()
|
/openssl/include/internal/ |
H A D | ffc.h | 198 int ossl_ffc_validate_private_key(const BIGNUM *upper, const BIGNUM *priv_key,
|
/openssl/doc/man3/ |
H A D | SSL_set_fd.pod | 58 upper limit is INVALID_SOCKET-1 (2^64 - 2), in practice the current socket()
|
H A D | EVP_PKEY_get_size.pod | 64 the upper limit in advance.
|
H A D | ASYNC_start_job.pod | 57 the pool. If I<max_size> is set to 0 then no upper limit is set. When an 63 with a I<max_size> of 0 (no upper limit) and an I<init_size> of 0 (no
|
H A D | SSL_get_error.pod | 84 There is no fixed upper limit for the number of iterations that
|
H A D | EVP_KDF.pod | 253 an upper limit on the amount of memory that may be consumed while performing
|
H A D | SSL_CONF_cmd.pod | 223 If either the lower or upper bound is not specified then only the other bound
|
/openssl/crypto/bn/asm/ |
H A D | bn-c64xplus.asm | 202 [!A2] SHRU A3,31,A1 ; upper bit 211 SHRU A3,31,A1 ; upper bit
|
/openssl/test/recipes/80-test_cmp_http_data/ |
H A D | test_connection.csv | 33 0,path upper case, -section,,,,,,,,BLANK,, -path,PKIX/,BLANK,,BLANK,,BLANK,
|
/openssl/doc/designs/quic-design/ |
H A D | glossary.md | 161 processing by upper layers.
|
/openssl/ |
H A D | NEWS.md | 260 reaches its upper bound of BIO_TYPE_MASK and will now return -1 once its
|
H A D | CHANGES.md | 353 reaches its upper bound of BIO_TYPE_MASK. It will now correctly return an
|
Completed in 87 milliseconds