Home
last modified time | relevance | path

Searched refs:rem (Results 26 – 36 of 36) sorted by relevance

12

/openssl/doc/man3/
H A DBN_add.pod21 int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *a, const BIGNUM *d,
24 int BN_mod(BIGNUM *rem, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx);
65 remainder in I<rem> (C<dv=a/d, rem=a%d>). Either of I<dv> and I<rem> may
H A DBN_generate_prime.pod15 const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb,
19 const BIGNUM *rem, BN_GENCB *cb);
42 BIGNUM *rem, void (*callback)(int, int, void *),
107 == B<rem> (p % B<add> == 1 if B<rem> == B<NULL>) in order to suit a given
111 that (p-1)/2 is also prime). If B<safe> is true, and B<rem> == B<NULL>
H A DBN_mod_mul_reciprocal.pod18 int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *a, BN_RECP_CTX *recp,
44 in B<dv> and the remainder in B<rem>.
/openssl/include/openssl/
H A Dbn.h275 int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
277 # define BN_mod(rem,m,d,ctx) BN_div(NULL,(rem),(m),(d),(ctx)) argument
364 const BIGNUM *add, const BIGNUM *rem,
386 const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb,
389 const BIGNUM *rem, BN_GENCB *cb);
463 int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,
/openssl/crypto/modes/
H A Dgcm128.c170 size_t rem, nlo, nhi; in gcm_gmult_4bit() local
181 rem = (size_t)Z.lo & 0xf; in gcm_gmult_4bit()
185 Z.hi ^= rem_4bit[rem]; in gcm_gmult_4bit()
187 Z.hi ^= (u64)rem_4bit[rem] << 32; in gcm_gmult_4bit()
199 rem = (size_t)Z.lo & 0xf; in gcm_gmult_4bit()
203 Z.hi ^= rem_4bit[rem]; in gcm_gmult_4bit()
249 size_t rem, nlo, nhi; in gcm_ghash_4bit() local
263 rem = (size_t)Z.lo & 0xf; in gcm_ghash_4bit()
267 Z.hi ^= rem_4bit[rem]; in gcm_ghash_4bit()
282 rem = (size_t)Z.lo & 0xf; in gcm_ghash_4bit()
[all …]
/openssl/Configurations/
H A Dwindows-makefile.tmpl433 @{- output_off() if $disabled{makedepend}; "\@rem" -}
437 @{- output_on() if $disabled{makedepend}; "\@rem" -}
443 @{- output_off() if $disabled{tests}; "\@rem" -}
447 @{- output_on() if !$disabled{tests}; "\@rem" -}
450 @{- output_off() if $disabled{tests}; "\@rem" -}
454 @{- output_on() if !$disabled{tests}; "\@rem" -}
469 {- join("\n\t", map { "-del /Q /F $_" } @PROGRAMS) || "\@rem" -}
470 {- join("\n\t", map { "-del /Q /F $_" } @MODULES) || "\@rem" -}
471 {- join("\n\t", map { "-del /Q /F $_" } @SCRIPTS) || "\@rem" -}
486 @ {- output_off() if $disabled{makedepend}; "\@rem" -}
[all …]
/openssl/crypto/evp/
H A De_aes.c1082 int rem; in s390x_aes_ofb_cipher() local
1103 if (rem) { in s390x_aes_ofb_cipher()
1155 int rem; in s390x_aes_cfb_cipher() local
1187 if (rem) { in s390x_aes_cfb_cipher()
1269 int n, rem; in s390x_aes_gcm_aad() local
1304 if (rem) { in s390x_aes_gcm_aad()
1308 --rem; in s390x_aes_gcm_aad()
1309 ctx->ares[rem] = aad[rem]; in s390x_aes_gcm_aad()
1384 if (rem) { in s390x_aes_gcm()
1816 int i, rem; in s390x_aes_ccm_aad() local
[all …]
/openssl/apps/
H A Ds_client.c74 static int ldap_ExtendedResponse_parse(const char *buf, long rem);
3453 end = cur + rem; in ldap_ExtendedResponse_parse()
3483 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); in ldap_ExtendedResponse_parse()
3485 (rem = end - cur, len > rem)) { in ldap_ExtendedResponse_parse()
3493 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); in ldap_ExtendedResponse_parse()
3495 (rem = end - cur, len > rem)) { in ldap_ExtendedResponse_parse()
3503 rem = end - cur; in ldap_ExtendedResponse_parse()
3504 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); in ldap_ExtendedResponse_parse()
3512 rem = end - cur; in ldap_ExtendedResponse_parse()
3513 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem); in ldap_ExtendedResponse_parse()
[all …]
/openssl/crypto/bn/
H A Drsaz_exp_x2.c414 const int rem = modulus_bitsize % exp_win_size;
417 int exp_bit_no = modulus_bitsize - rem;
431 OPENSSL_assert(rem != 0);
/openssl/include/crypto/
H A Dbn.h88 int bn_div_fixed_top(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,
/openssl/
H A DCHANGES.md13957 such that `|m| < r < 0`, `BN_nnmod` will output `rem + |m|` instead).
14436 code did not properly initialise the 'add' and 'rem' values to
16363 equal (it gave wrong results if `(rem=(n1-q*d0)&BN_MASK2) < d0)`.

Completed in 102 milliseconds

12