BigIntegerValue.pow(IntegerValue)
java上的exponent是Integer,但我有Biginteger Value。
我曾尝试验证签名GOST 3410,我得到了这个代码功能,但它很长......
有什么想法吗?获得P和Q,我使用了充气城堡..但我不知道如何验证充气城堡因为不知道如何看到价值..谢谢你。
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;
}
答案 0 :(得分:3)
您可以使用 modPow
类专门设计的 BigInteger
方法
自
((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);