referencemultiplier.java

来自「kmlnjlkj nlkjlkjkljl okopokipoipo oipipi」· Java 代码 · 共 31 行

JAVA
31
字号
package org.bouncycastle.math.ec;import java.math.BigInteger;class ReferenceMultiplier implements ECMultiplier{    /**     * Simple shift-and-add multiplication. Serves as reference implementation     * to verify (possibly faster) implementations in     * {@link org.bouncycastle.math.ec.ECPoint ECPoint}.     *      * @param p The point to multiply.     * @param k The factor by which to multiply.     * @return The result of the point multiplication <code>k * p</code>.     */    public ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo)    {        ECPoint q = p.getCurve().getInfinity();        int t = k.bitLength();        for (int i = 0; i < t; i++)        {            if (k.testBit(i))            {                q = q.add(p);            }            p = p.twice();        }        return q;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?