HomeSort by relevance Sort by last modified time
    Searched refs:totient (Results 1 - 3 of 3) sorted by null

  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa_impl.c 952 BIGNUM *totient = BN_CTX_get(ctx); local
957 if (totient == NULL || pm1 == NULL || qm1 == NULL || gcd == NULL ||
1023 // use d (mod p-1) and d (mod q-1) as exponents. Using a minimal totient
1027 !BN_mul(totient, pm1, qm1, ctx) ||
1029 !BN_div(totient, NULL, totient, gcd, ctx) ||
1030 !BN_mod_inverse(rsa->d, rsa->e, totient, ctx)) {
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/rsa/
rsa.go 275 totient := new(big.Int).Set(bigOne)
280 totient.Mul(totient, pminus1)
292 g.GCD(priv.D, nil, e, totient)
296 priv.D.Add(priv.D, totient)
  /prebuilts/go/linux-x86/src/crypto/rsa/
rsa.go 275 totient := new(big.Int).Set(bigOne)
280 totient.Mul(totient, pminus1)
292 g.GCD(priv.D, nil, e, totient)
296 priv.D.Add(priv.D, totient)

Completed in 103 milliseconds