本文整理汇总了Java中org.bouncycastle.asn1.oiw.ElGamalParameter类的典型用法代码示例。如果您正苦于以下问题:Java ElGamalParameter类的具体用法?Java ElGamalParameter怎么用?Java ElGamalParameter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ElGamalParameter类属于org.bouncycastle.asn1.oiw包,在下文中一共展示了ElGamalParameter类的16个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: JCEElGamalPublicKey
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
JCEElGamalPublicKey(
SubjectPublicKeyInfo info)
{
ElGamalParameter params = ElGamalParameter.getInstance(info.getAlgorithm().getParameters());
ASN1Integer derY = null;
try
{
derY = (ASN1Integer)info.parsePublicKey();
}
catch (IOException e)
{
throw new IllegalArgumentException("invalid info structure in DSA public key");
}
this.y = derY.getValue();
this.elSpec = new ElGamalParameterSpec(params.getP(), params.getG());
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:19,代码来源:JCEElGamalPublicKey.java
示例2: BCElGamalPublicKey
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
BCElGamalPublicKey(
SubjectPublicKeyInfo info)
{
ElGamalParameter params = ElGamalParameter.getInstance(info.getAlgorithm().getParameters());
ASN1Integer derY = null;
try
{
derY = (ASN1Integer)info.parsePublicKey();
}
catch (IOException e)
{
throw new IllegalArgumentException("invalid info structure in DSA public key");
}
this.y = derY.getValue();
this.elSpec = new ElGamalParameterSpec(params.getP(), params.getG());
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:19,代码来源:BCElGamalPublicKey.java
示例3: JCEElGamalPrivateKey
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
JCEElGamalPrivateKey(
PrivateKeyInfo info)
throws IOException
{
ElGamalParameter params = new ElGamalParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
DERInteger derX = ASN1Integer.getInstance(info.parsePrivateKey());
this.x = derX.getValue();
this.elSpec = new ElGamalParameterSpec(params.getP(), params.getG());
}
开发者ID:Appdome,项目名称:ipack,代码行数:11,代码来源:JCEElGamalPrivateKey.java
示例4: BCElGamalPrivateKey
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
BCElGamalPrivateKey(
PrivateKeyInfo info)
throws IOException
{
ElGamalParameter params = new ElGamalParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
DERInteger derX = ASN1Integer.getInstance(info.parsePrivateKey());
this.x = derX.getValue();
this.elSpec = new ElGamalParameterSpec(params.getP(), params.getG());
}
开发者ID:Appdome,项目名称:ipack,代码行数:11,代码来源:BCElGamalPrivateKey.java
示例5: getEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
/**
* Return a PKCS8 representation of the key. The sequence returned
* represents a full PrivateKeyInfo object.
*
* @return a PKCS8 representation of the key.
*/
public byte[] getEncoded()
{
try
{
PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(OIWObjectIdentifiers.elGamalAlgorithm, new ElGamalParameter(elSpec.getP(), elSpec.getG())), new DERInteger(getX()));
return info.getEncoded(ASN1Encoding.DER);
}
catch (IOException e)
{
return null;
}
}
开发者ID:Appdome,项目名称:ipack,代码行数:20,代码来源:BCElGamalPrivateKey.java
示例6: engineGetEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
/**
* Return the X.509 ASN.1 structure ElGamalParameter.
* <p/>
* <pre>
* ElGamalParameter ::= SEQUENCE {
* prime INTEGER, -- p
* base INTEGER, -- g}
* </pre>
*/
protected byte[] engineGetEncoded()
{
ElGamalParameter elP = new ElGamalParameter(currentSpec.getP(), currentSpec.getG());
try
{
return elP.getEncoded(ASN1Encoding.DER);
}
catch (IOException e)
{
throw new RuntimeException("Error encoding ElGamalParameters");
}
}
开发者ID:Appdome,项目名称:ipack,代码行数:23,代码来源:AlgorithmParametersSpi.java
示例7: getEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
public byte[] getEncoded()
{
try
{
SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(OIWObjectIdentifiers.elGamalAlgorithm, new ElGamalParameter(elSpec.getP(), elSpec.getG())), new DERInteger(y));
return info.getEncoded(ASN1Encoding.DER);
}
catch (IOException e)
{
return null;
}
}
开发者ID:Appdome,项目名称:ipack,代码行数:14,代码来源:BCElGamalPublicKey.java
示例8: JCEElGamalPrivateKey
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
JCEElGamalPrivateKey(
PrivateKeyInfo info)
throws IOException
{
ElGamalParameter params = ElGamalParameter.getInstance(info.getPrivateKeyAlgorithm().getParameters());
ASN1Integer derX = ASN1Integer.getInstance(info.parsePrivateKey());
this.x = derX.getValue();
this.elSpec = new ElGamalParameterSpec(params.getP(), params.getG());
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:11,代码来源:JCEElGamalPrivateKey.java
示例9: BCElGamalPrivateKey
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
BCElGamalPrivateKey(
PrivateKeyInfo info)
throws IOException
{
ElGamalParameter params = ElGamalParameter.getInstance(info.getPrivateKeyAlgorithm().getParameters());
ASN1Integer derX = ASN1Integer.getInstance(info.parsePrivateKey());
this.x = derX.getValue();
this.elSpec = new ElGamalParameterSpec(params.getP(), params.getG());
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:11,代码来源:BCElGamalPrivateKey.java
示例10: getEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
/**
* Return a PKCS8 representation of the key. The sequence returned
* represents a full PrivateKeyInfo object.
*
* @return a PKCS8 representation of the key.
*/
public byte[] getEncoded()
{
try
{
PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(OIWObjectIdentifiers.elGamalAlgorithm, new ElGamalParameter(elSpec.getP(), elSpec.getG())), new ASN1Integer(getX()));
return info.getEncoded(ASN1Encoding.DER);
}
catch (IOException e)
{
return null;
}
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:20,代码来源:BCElGamalPrivateKey.java
示例11: engineGetEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
/**
* Return the X.509 ASN.1 structure ElGamalParameter.
* <pre>
* ElGamalParameter ::= SEQUENCE {
* prime INTEGER, -- p
* base INTEGER, -- g}
* </pre>
*/
protected byte[] engineGetEncoded()
{
ElGamalParameter elP = new ElGamalParameter(currentSpec.getP(), currentSpec.getG());
try
{
return elP.getEncoded(ASN1Encoding.DER);
}
catch (IOException e)
{
throw new RuntimeException("Error encoding ElGamalParameters");
}
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:22,代码来源:AlgorithmParametersSpi.java
示例12: getEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
public byte[] getEncoded()
{
try
{
SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(OIWObjectIdentifiers.elGamalAlgorithm, new ElGamalParameter(elSpec.getP(), elSpec.getG())), new ASN1Integer(y));
return info.getEncoded(ASN1Encoding.DER);
}
catch (IOException e)
{
return null;
}
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:14,代码来源:BCElGamalPublicKey.java
示例13: getEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
public byte[] getEncoded()
{
return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(OIWObjectIdentifiers.elGamalAlgorithm, new ElGamalParameter(elSpec.getP(), elSpec.getG())), new DERInteger(y));
}
开发者ID:Appdome,项目名称:ipack,代码行数:5,代码来源:JCEElGamalPublicKey.java
示例14: getEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
public byte[] getEncoded()
{
return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(OIWObjectIdentifiers.elGamalAlgorithm, new ElGamalParameter(elSpec.getP(), elSpec.getG())), new ASN1Integer(y));
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:5,代码来源:JCEElGamalPublicKey.java
示例15: getEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
/**
* Return a PKCS8 representation of the key. The sequence returned
* represents a full PrivateKeyInfo object.
*
* @return a PKCS8 representation of the key.
*/
public byte[] getEncoded()
{
return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(OIWObjectIdentifiers.elGamalAlgorithm, new ElGamalParameter(elSpec.getP(), elSpec.getG())), new DERInteger(getX()));
}
开发者ID:Appdome,项目名称:ipack,代码行数:11,代码来源:JCEElGamalPrivateKey.java
示例16: getEncoded
import org.bouncycastle.asn1.oiw.ElGamalParameter; //导入依赖的package包/类
/**
* Return a PKCS8 representation of the key. The sequence returned
* represents a full PrivateKeyInfo object.
*
* @return a PKCS8 representation of the key.
*/
public byte[] getEncoded()
{
return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(OIWObjectIdentifiers.elGamalAlgorithm, new ElGamalParameter(elSpec.getP(), elSpec.getG())), new ASN1Integer(getX()));
}
开发者ID:thedrummeraki,项目名称:Aki-SSL,代码行数:11,代码来源:JCEElGamalPrivateKey.java
注:本文中的org.bouncycastle.asn1.oiw.ElGamalParameter类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论