2

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;
}
4

1 回答 1

3

您可以使用专门设计 modPowBigInteger类方法

自从

  ((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);
于 2014-03-09T16:32:05.867 回答