refactor into multiplicativeOrder function
This commit is contained in:
parent
7d554fb945
commit
117b046be8
|
|
@ -40,6 +40,17 @@ func totient(n *big.Int) *big.Int {
|
|||
return total
|
||||
}
|
||||
|
||||
func multiplicativeOrder(g *big.Int, modulus *big.Int) *big.Int {
|
||||
e := new(big.Int).Set(g)
|
||||
var k *big.Int
|
||||
for k = big.NewInt(1); e.Cmp(big.NewInt(1)) != 0; k.Add(k, big.NewInt(1)) {
|
||||
e.Mul(e, g)
|
||||
e.Mod(e, modulus)
|
||||
}
|
||||
|
||||
return k
|
||||
}
|
||||
|
||||
func computeNaive(modulus *big.Int) (*big.Int, error) {
|
||||
if modulus.Cmp(big.NewInt(1)) == 0 {
|
||||
return big.NewInt(0), nil
|
||||
|
|
@ -53,14 +64,8 @@ func computeNaive(modulus *big.Int) (*big.Int, error) {
|
|||
continue
|
||||
}
|
||||
|
||||
e := new(big.Int).Set(g)
|
||||
var k *big.Int
|
||||
for k = big.NewInt(1); e.Cmp(big.NewInt(1)) != 0; k.Add(k, big.NewInt(1)) {
|
||||
e.Mul(e, g)
|
||||
e.Mod(e, modulus)
|
||||
}
|
||||
|
||||
if k.Cmp(phi) == 0 {
|
||||
order := multiplicativeOrder(g, modulus)
|
||||
if order.Cmp(phi) == 0 {
|
||||
return g, nil
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue