Home
last modified time | relevance | path

Searched refs:numbers (Results 1 – 25 of 80) sorted by relevance

1234

/openssl/util/perl/OpenSSL/
H A DOID.pm180 my @numbers =
200 return @numbers;
267 my @numbers = @_;
269 croak 'Invalid OID values: ( ', join(', ', @numbers), ' )'
270 if (scalar @numbers < 2
271 || $numbers[0] < 0 || $numbers[0] > 2
272 || $numbers[1] < 0 || $numbers[1] > 39);
274 my $first = shift(@numbers) * 40 + shift(@numbers);
275 @numbers = ( $first, map { _gen_oid_bytes($_) } @numbers );
277 return @numbers;
H A Dconfig.pm344 my @numbers = split /\./, $v;
346 while (@numbers && @factors) {
347 $CCVER += shift(@numbers) * shift(@factors)
392 my @numbers =
396 while (@numbers && @factors) {
397 $v += shift(@numbers) * shift(@factors)
H A DOrdinals.pm318 my %numbers = ();
322 $numbers{$_->intnum()} = 1;
332 if (scalar keys %numbers > 1);
/openssl/doc/man7/
H A Dopenssl-core_dispatch.h.pod6 - OpenSSL provider dispatch numbers and function types
15 numbers, dispatch numbers and provider interface function types
18 The operation and dispatch numbers are represented with macros, which
23 =item operation numbers
27 =item dipatch numbers
H A Dopenssl_user_macros.pod.in38 Any version number may be given, but these numbers are
52 For convenience, higher numbers are accepted as well, as long as
/openssl/doc/man1/
H A Dopenssl-prime.pod.in6 openssl-prime - compute prime numbers
22 This command checks if the specified numbers are prime.
24 If no numbers are given on the command line, the B<-generate> flag should
/openssl/test/
H A Decdsatest.c30 static const char *numbers[2]; variable
45 || !TEST_int_lt(fbytes_counter, OSSL_NELEM(numbers)) in fbytes()
46 || !TEST_true(BN_hex2bn(&tmp, numbers[fbytes_counter])) in fbytes()
52 fbytes_counter = (fbytes_counter + 1) % OSSL_NELEM(numbers); in fbytes()
94 numbers[0] = ecdsa_cavs_kats[n].d; in x9_62_tests()
95 numbers[1] = ecdsa_cavs_kats[n].k; in x9_62_tests()
H A DREADME.md129 random numbers is operating correctly (with a false positive rate of 0.01%):
152 Random numbers in tests
155 Some tests use random numbers as part of the test. In some cases a test failure
156 may occur for some random numbers, but not for others. The seed used for the
/openssl/fuzz/
H A DREADME.md135 reproduce the generated random numbers.
155 Random numbers
158 The client and server fuzzer normally generate random numbers as part of the TLS
160 depending on the random numbers. This also has an effect for coverage of the
165 server fuzzer will use predictable numbers instead of the random numbers. This
168 The coverage depends on the way the numbers are generated. We don't disable any
170 numbers that were generated. For instance the client fuzzer will always generate
/openssl/doc/internal/man3/
H A Dossl_serial_number_print.pod18 user of negative serial numbers, and handles wrapping of huge serial numbers.
H A Devp_md_get_number.pod9 ossl_store_loader_get_number - EVP get internal identification numbers
33 These numbers should only be considered to be unique per provider per
/openssl/doc/man3/
H A DBN_bn2bin.pod56 for positive numbers or with 0xff for negative numbers) if necessary.
79 numbers, the string is prefaced with a leading '-'. The string must be
91 with a leading '-' for negative numbers, to the B<BIO> or B<FILE>
98 of numbers with the MSB set is prefixed with null byte).
H A DERR_put_error.pod79 All these macros and the numbers they have as values are specific to
111 numbers.
123 authors of that code. They must be numbers in the range 1 to 524287 (in
147 Reason codes should consist of uppercase characters, numbers and underscores
H A DERR_load_strings.pod36 ERR_get_next_error_library() can be used to assign library numbers
H A DBN_security_bits.pod5 BN_security_bits - returns bits of security based on given numbers
H A DBN_num_bytes.pod36 Some have tried using BN_num_bits() on individual numbers in RSA keys,
H A DBN_cmp.pod25 BN_cmp() compares the numbers I<a> and I<b>. BN_ucmp() compares their
H A DOPENSSL_fork_prepare.pod28 the entropy pool used to generate random numbers (and therefore encryption
H A DX509_LOOKUP_hash_dir.pod98 Gaps in the sequence numbers are not supported, it is assumed that there are no
102 Sequence numbers make it possible for the directory to contain multiple
H A DBIO_new_CMS.pod43 Large numbers of small writes through the chain should be avoided as this will
H A DERR_new.pod58 For dynamically allocated library numbers, reason strings are recorded
/openssl/demos/certs/
H A DREADME.txt3 CA certificates, obsolete V1 certificates or duplicate serial numbers.
/openssl/crypto/rsa/
H A Drsa_backend.c38 static int collect_numbers(STACK_OF(BIGNUM) *numbers, in DEFINE_STACK_OF()
44 if (numbers == NULL) in DEFINE_STACK_OF()
54 if (sk_BIGNUM_push(numbers, tmp) == 0) { in DEFINE_STACK_OF()
/openssl/doc/internal/man7/
H A Ddeprecation.pod43 versions before that are three numbers (such as C<1_1_0>), while they are
44 two numbers (such as C<3_0>) from 3.0 and on.
/openssl/doc/designs/quic-design/
H A Dquic-ackm.md13 numbers in packet headers can be encoded and decoded correctly
79 Packet numbers are 62-bit values represented herein by `QUIC_PN`.
253 The ranges of packet numbers being acknowledged are passed as an argument.
265 * Represents an inclusive range of packet numbers [start, end].

Completed in 38 milliseconds

1234