Searched refs:remainder (Results 1 – 15 of 15) sorted by relevance
/openssl/providers/implementations/kdfs/ |
H A D | krb5kdf.c | 289 unsigned int tmp, gcd, remainder, lcm, carry; in n_fold() local 299 remainder = constant_len; in n_fold() 301 while (remainder != 0) { in n_fold() 302 tmp = gcd % remainder; in n_fold() 303 gcd = remainder; in n_fold() 304 remainder = tmp; in n_fold()
|
/openssl/ssl/record/methods/ |
H A D | tls13_meth.c | 365 size_t mask, bp = 0, remainder; in tls13_add_record_padding() local 382 remainder = rlen & mask; in tls13_add_record_padding() 384 remainder = rlen % bp; in tls13_add_record_padding() 386 if (remainder == 0) in tls13_add_record_padding() 389 padding = bp - remainder; in tls13_add_record_padding()
|
/openssl/test/ |
H A D | bntest.c | 323 int n, divisor, result, remainder; member 1327 BIGNUM *two = NULL, *remainder = NULL; in file_lshift1() local 1335 || !TEST_ptr(remainder = BN_new())) in file_lshift1() 1371 BN_free(remainder); in file_lshift1() 1434 BIGNUM *remainder = NULL, *tmp = NULL; in file_square() local 1441 || !TEST_ptr(remainder = BN_new())) in file_square() 1486 BN_free(remainder); in file_square() 1494 BIGNUM *remainder = NULL, *zero = NULL; in file_product() local 1501 || !TEST_ptr(remainder = BN_new()) in file_product() 1523 BN_free(remainder); in file_product() [all …]
|
H A D | bntests.pl | 69 my $remainder = bn($s{'Remainder'}); 75 my $rempassed = $remainder == $a->bsub($b) ? 1 : 0;
|
/openssl/doc/man3/ |
H A D | BN_add_word.pod | 34 BN_div_word() divides B<a> by B<w> (C<a/=w>) and returns the remainder. 36 BN_mod_word() returns the remainder of B<a> divided by B<w> (C<a%w>).
|
H A D | BN_add.pod | 65 remainder in I<rem> (C<dv=a/d, rem=a%d>). Either of I<dv> and I<rem> may 68 remainder will be zero or negative. 74 remainder in I<r>. 83 remainder respective to modulus I<m> (C<r=(a*b) mod m>). I<r> may be
|
H A D | BN_mod_mul_reciprocal.pod | 44 in B<dv> and the remainder in B<rem>.
|
H A D | SSL_new_stream.pod | 63 remainder of the connection lifetime.
|
H A D | EVP_EncodeInit.pod | 63 function. Any remainder is held in the B<ctx> object and will be processed by a 67 any remainder). This gives the number of blocks of data that will be processed.
|
/openssl/doc/internal/man3/ |
H A D | OSSL_SAFE_MATH_SIGNED.pod | 51 safe_mod_TYPE() calculates the remainder when I<a> is divided by I<b>. 54 I.e. it computes the quotient of I<a> and I<b> rounding any remainder towards
|
/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_gcm_hw_s390x.inc | 245 /* previous call already encrypted/decrypted its remainder, 272 * If there is a remainder, it has to be saved such that it can be
|
/openssl/doc/designs/quic-design/ |
H A D | quic-requirements.md | 12 requirements for the coming releases. The remainder of this section summarises
|
/openssl/doc/man7/ |
H A D | openssl-quic.pod | 34 The remainder of this man page discusses, in order:
|
/openssl/ |
H A D | INSTALL.md | 1386 For the remainder of this text, the Unix form will be used in all examples.
|
H A D | CHANGES.md | 4987 as this was a remainder from OpenSSL 1.0.x and isn't needed any more. 15498 `BN_nnmod` otherwise is `like BN_mod` (if `BN_mod` computes a remainder `r`
|
Completed in 56 milliseconds