BigIntegerValue.pow(IntegerValue)
java 上的指数是整数,但我有 Biginteger 值。
我曾尝试验证签名 GOST 3410,我得到了这个代码 pow,但它太长了..
有什么想法吗?要获得 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;
}