mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
Merge pull request #11 from SamouraiDev/master
improve group value test for bip47 addresses
This commit is contained in:
commit
50fdb71bf3
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ public class PaymentAddress {
|
||||||
private BigInteger addSecp256k1(BigInteger b1, BigInteger b2) {
|
private BigInteger addSecp256k1(BigInteger b1, BigInteger b2) {
|
||||||
BigInteger ret = b1.add(b2);
|
BigInteger ret = b1.add(b2);
|
||||||
|
|
||||||
if(ret.bitLength() > CURVE.getN().bitLength()) {
|
if(ret.compareTo(CURVE.getN()) > 0) {
|
||||||
return ret.mod(CURVE.getN());
|
return ret.mod(CURVE.getN());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ public class PaymentAddress {
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isSecp256k1(BigInteger b) {
|
private boolean isSecp256k1(BigInteger b) {
|
||||||
return b.compareTo(BigInteger.ONE) > 0 && b.bitLength() <= CURVE.getN().bitLength();
|
return (b.compareTo(BigInteger.ONE) > 0) && (b.compareTo(CURVE.getN()) < 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
private BigInteger secretPoint() throws InvalidKeyException, NoSuchAlgorithmException, NoSuchProviderException, InvalidKeySpecException, NotSecp256k1Exception {
|
private BigInteger secretPoint() throws InvalidKeyException, NoSuchAlgorithmException, NoSuchProviderException, InvalidKeySpecException, NotSecp256k1Exception {
|
||||||
|
|
Loading…
Reference in a new issue