本文整理汇总了Java中org.bouncycastle.asn1.ASN1ParsingException类的典型用法代码示例。如果您正苦于以下问题:Java ASN1ParsingException类的具体用法?Java ASN1ParsingException怎么用?Java ASN1ParsingException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ASN1ParsingException类属于org.bouncycastle.asn1包,在下文中一共展示了ASN1ParsingException类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getInstance
import org.bouncycastle.asn1.ASN1ParsingException; //导入依赖的package包/类
public static CVCertificateRequest getInstance(Object obj)
{
if (obj instanceof CVCertificateRequest)
{
return (CVCertificateRequest)obj;
}
else if (obj != null)
{
try
{
return new CVCertificateRequest(DERApplicationSpecific.getInstance(obj));
}
catch (IOException e)
{
throw new ASN1ParsingException("unable to parse data: " + e.getMessage(), e);
}
}
return null;
}
开发者ID:Appdome,项目名称:ipack,代码行数:21,代码来源:CVCertificateRequest.java
示例2: getInstance
import org.bouncycastle.asn1.ASN1ParsingException; //导入依赖的package包/类
/**
* Create an iso7816Certificate structure from an object.
*
* @param obj the Object to extract the certificate from.
* @return the Iso7816CertificateStructure represented by the byte stream.
* @throws IOException if there is a problem parsing the data.
*/
public static CVCertificate getInstance(Object obj)
{
if (obj instanceof CVCertificate)
{
return (CVCertificate)obj;
}
else if (obj != null)
{
try
{
return new CVCertificate(DERApplicationSpecific.getInstance(obj));
}
catch (IOException e)
{
throw new ASN1ParsingException("unable to parse data: " + e.getMessage(), e);
}
}
return null;
}
开发者ID:Appdome,项目名称:ipack,代码行数:28,代码来源:CVCertificate.java
示例3: getInstance
import org.bouncycastle.asn1.ASN1ParsingException; //导入依赖的package包/类
public static CVCertificateRequest getInstance(Object obj)
{
if (obj instanceof CVCertificateRequest)
{
return (CVCertificateRequest)obj;
}
else if (obj != null)
{
try
{
return new CVCertificateRequest(ASN1ApplicationSpecific.getInstance(obj));
}
catch (IOException e)
{
throw new ASN1ParsingException("unable to parse data: " + e.getMessage(), e);
}
}
return null;
}
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:21,代码来源:CVCertificateRequest.java
示例4: getInstance
import org.bouncycastle.asn1.ASN1ParsingException; //导入依赖的package包/类
/**
* Create an iso7816Certificate structure from an object.
*
* @param obj the Object to extract the certificate from.
* @return the Iso7816CertificateStructure represented by the byte stream.
*/
public static CVCertificate getInstance(Object obj)
{
if (obj instanceof CVCertificate)
{
return (CVCertificate)obj;
}
else if (obj != null)
{
try
{
return new CVCertificate(DERApplicationSpecific.getInstance(obj));
}
catch (IOException e)
{
throw new ASN1ParsingException("unable to parse data: " + e.getMessage(), e);
}
}
return null;
}
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:27,代码来源:CVCertificate.java
示例5: getAuthAttrs
import org.bouncycastle.asn1.ASN1ParsingException; //导入依赖的package包/类
public ASN1SetParser getAuthAttrs()
throws IOException
{
if (nextObject == null)
{
nextObject = seq.readObject();
}
if (nextObject instanceof ASN1TaggedObjectParser)
{
ASN1Encodable o = nextObject;
nextObject = null;
return (ASN1SetParser)((ASN1TaggedObjectParser)o).getObjectParser(BERTags.SET, false);
}
// "The authAttrs MUST be present if the content type carried in
// EncryptedContentInfo is not id-data."
if (!authEncryptedContentInfoParser.getContentType().equals(CMSObjectIdentifiers.data))
{
throw new ASN1ParsingException("authAttrs must be present with non-data content");
}
return null;
}
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:25,代码来源:AuthEnvelopedDataParser.java
示例6: stringToValue
import org.bouncycastle.asn1.ASN1ParsingException; //导入依赖的package包/类
/**
* For all string values starting with '#' is assumed, that these are
* already valid ASN.1 objects encoded in hex.
* <p>
* All other string values are send to
* {@link AbstractX500NameStyle#encodeStringValue(ASN1ObjectIdentifier, String)}.
* </p>
* Subclasses should overwrite
* {@link AbstractX500NameStyle#encodeStringValue(ASN1ObjectIdentifier, String)}
* to change the encoding of specific types.
*
* @param oid the DN name of the value.
* @param value the String representation of the value.
*/
public ASN1Encodable stringToValue(ASN1ObjectIdentifier oid, String value)
{
if (value.length() != 0 && value.charAt(0) == '#')
{
try
{
return IETFUtils.valueFromHexString(value, 1);
}
catch (IOException e)
{
throw new ASN1ParsingException("can't recode value for oid " + oid.getId());
}
}
if (value.length() != 0 && value.charAt(0) == '\\')
{
value = value.substring(1);
}
return encodeStringValue(oid, value);
}
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:36,代码来源:AbstractX500NameStyle.java
示例7: AuthEnvelopedDataParser
import org.bouncycastle.asn1.ASN1ParsingException; //导入依赖的package包/类
public AuthEnvelopedDataParser(ASN1SequenceParser seq) throws IOException
{
this.seq = seq;
// "It MUST be set to 0."
this.version = ASN1Integer.getInstance(seq.readObject());
if (this.version.getValue().intValue() != 0)
{
throw new ASN1ParsingException("AuthEnvelopedData version number must be 0");
}
}
开发者ID:ttt43ttt,项目名称:gwt-crypto,代码行数:12,代码来源:AuthEnvelopedDataParser.java
注:本文中的org.bouncycastle.asn1.ASN1ParsingException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论