x9fieldelement.java

来自「《移动Agent技术》一书的所有章节源代码。」· Java 代码 · 共 62 行

JAVA
62
字号
package org.bouncycastle.asn1.x9;import java.math.BigInteger;import org.bouncycastle.asn1.*;import org.bouncycastle.math.ec.*;/** * class for processing an FieldElement as a DER object. */public class X9FieldElement    implements DEREncodable{    private ECFieldElement  f;    public X9FieldElement(        ECFieldElement  f)    {        this.f = f;    }    public X9FieldElement(        boolean         fP,        BigInteger      q,        DEROctetString  s)    {        if (fP)        {            this.f = new ECFieldElement.Fp(q, new BigInteger(1, s.getOctets()));        }        else        {            throw new RuntimeException("not implemented");        }    }    public ECFieldElement getValue()    {        return f;    }    /**     * <pre>     *  FieldElement ::= OCTET STRING     * </pre>     * <p>     * <ol>     * <li> if <i>q</i> is an odd prime then the field element is     * processed as an Integer and converted to an octet string     * according to x 9.62 4.3.1.</li>     * <li> if <i>q</i> is 2<sup>m</sup> then the bit string     * contained in the field element is converted into an octet     * string with the same ordering padded at the front if necessary.     * </li>     * </ol>     */    public DERObject getDERObject()    {        return new DEROctetString(f.toBigInteger().toByteArray());    }}

⌨️ 快捷键说明

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