BigIntegerValue.pow(IntegerValue(
java上的指数是Integer,但我有BigintegerValue。
我试过验证签名GOST 3410,我得到了这个代码pow,但它太长了。。
有人知道吗?为了得到P和Q,我习惯了弹性城堡。。但我不知道如何在充气城堡上验证,因为a不知道如何查看价值。。谢谢。
public static BigInteger pow_manual(BigInteger x, BigInteger y) {
if (y.compareTo(BigInteger.ZERO) < 0) {
throw new IllegalArgumentException();
}
BigInteger z = x; // z will successively become x^2, x^4, x^8, x^16, x^32...
BigInteger result = BigInteger.ONE;
byte[] bytes = y.toByteArray();
for (int i = bytes.length - 1; i >= 0; i--) {
byte bits = bytes[i];
for (int j = 0; j < 8; j++) {
if ((bits & 1) != 0) {
result = result.multiply(z);
}
// short cut out if there are no more bits to handle:
if ((bits >>= 1) == 0 && i == 0) {
return result;
}
z = z.multiply(z);
}
}
return result;
}
您可以使用专门设计的BigInteger
类的modPow
方法
自
((A^z1 * y^z2) mod P) mod Q == ((((A^z1) mod P) * ((y^z2) mod P)) mod P) mod Q
你可以把它放在
BigInteger A = ...
BigInteger y = ...
BigInteger z1 = ...
BigInteger z2 = ...
BigInteger P = ...
BigInteger Q = ...
BigInteger result = (A.modPow(z1, P).multiply(y.modPow(z2, P))).mod(P).mod(Q);