本文整理汇总了Java中org.bouncycastle.asn1.DERT61String类的典型用法代码示例。如果您正苦于以下问题:Java DERT61String类的具体用法?Java DERT61String怎么用?Java DERT61String使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DERT61String类属于org.bouncycastle.asn1包,在下文中一共展示了DERT61String类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: matchStringType
import org.bouncycastle.asn1.DERT61String; //导入依赖的package包/类
private static boolean matchStringType(ASN1Encodable atvValue, StringType stringType) {
boolean correctStringType = true;
switch (stringType) {
case bmpString:
correctStringType = (atvValue instanceof DERBMPString);
break;
case printableString:
correctStringType = (atvValue instanceof DERPrintableString);
break;
case teletexString:
correctStringType = (atvValue instanceof DERT61String);
break;
case utf8String:
correctStringType = (atvValue instanceof DERUTF8String);
break;
case ia5String:
correctStringType = (atvValue instanceof DERIA5String);
break;
default:
throw new RuntimeException("should not reach here, unknown StringType " + stringType);
} // end switch
return correctStringType;
}
开发者ID:xipki,项目名称:xipki,代码行数:24,代码来源:SubjectChecker.java
示例2: getInstance
import org.bouncycastle.asn1.DERT61String; //导入依赖的package包/类
public static DirectoryString getInstance(Object o)
{
if (o == null || o instanceof DirectoryString)
{
return (DirectoryString)o;
}
if (o instanceof DERT61String)
{
return new DirectoryString((DERT61String)o);
}
if (o instanceof DERPrintableString)
{
return new DirectoryString((DERPrintableString)o);
}
if (o instanceof DERUniversalString)
{
return new DirectoryString((DERUniversalString)o);
}
if (o instanceof DERUTF8String)
{
return new DirectoryString((DERUTF8String)o);
}
if (o instanceof DERBMPString)
{
return new DirectoryString((DERBMPString)o);
}
throw new IllegalArgumentException("illegal object in getInstance: " + o.getClass().getName());
}
开发者ID:Appdome,项目名称:ipack,代码行数:35,代码来源:DirectoryString.java
示例3: dumpString
import org.bouncycastle.asn1.DERT61String; //导入依赖的package包/类
private String dumpString(ASN1String asn1String) {
StringBuilder sb = new StringBuilder();
sb.append(indentSequence.toString(indentLevel));
if (asn1String instanceof DERBMPString) {
sb.append("BMP STRING=");
} else if (asn1String instanceof DERGeneralString) {
sb.append("GENERAL STRING=");
} else if (asn1String instanceof DERIA5String) {
sb.append("IA5 STRING=");
} else if (asn1String instanceof DERNumericString) {
sb.append("NUMERIC STRING=");
} else if (asn1String instanceof DERPrintableString) {
sb.append("PRINTABLE STRING=");
} else if (asn1String instanceof DERT61String) {
sb.append("TELETEX STRING=");
} else if (asn1String instanceof DERUniversalString) {
sb.append("UNIVERSAL STRING=");
} else if (asn1String instanceof DERUTF8String) {
sb.append("UTF8 STRING=");
} else if (asn1String instanceof DERVisibleString) {
sb.append("VISIBLE STRING=");
} else {
sb.append("UNKNOWN STRING=");
}
sb.append("'");
sb.append(asn1String.getString());
sb.append("'");
sb.append(NEWLINE);
return sb.toString();
}
开发者ID:kaikramer,项目名称:keystore-explorer,代码行数:35,代码来源:Asn1Dump.java
示例4: DirectoryString
import org.bouncycastle.asn1.DERT61String; //导入依赖的package包/类
private DirectoryString(
DERT61String string)
{
this.string = string;
}
开发者ID:Appdome,项目名称:ipack,代码行数:6,代码来源:DirectoryString.java
示例5: checkDirectoryString
import org.bouncycastle.asn1.DERT61String; //导入依赖的package包/类
private void checkDirectoryString(ASN1ObjectIdentifier extType, QaDirectoryString conf,
StringBuilder failureMsg, byte[] extensionValue, Extensions requestedExtensions,
ExtensionControl extControl) {
if (conf == null) {
byte[] expected = getExpectedExtValue(extType,
requestedExtensions, extControl);
if (!Arrays.equals(expected, extensionValue)) {
addViolation(failureMsg, "extension values", hex(extensionValue),
(expected == null) ? "not present" : hex(expected));
}
return;
}
ASN1Primitive asn1;
try {
asn1 = ASN1Primitive.fromByteArray(extensionValue);
} catch (IOException ex) {
failureMsg.append("invalid syntax of extension value; ");
return;
}
boolean correctStringType;
switch (conf.type()) {
case bmpString:
correctStringType = (asn1 instanceof DERBMPString);
break;
case printableString:
correctStringType = (asn1 instanceof DERPrintableString);
break;
case teletexString:
correctStringType = (asn1 instanceof DERT61String);
break;
case utf8String:
correctStringType = (asn1 instanceof DERUTF8String);
break;
default:
throw new RuntimeException("should not reach here, unknown DirectoryStringType "
+ conf.type());
} // end switch
if (!correctStringType) {
failureMsg.append("extension value is not of type DirectoryString.")
.append(conf.text()).append("; ");
return;
}
String extTextValue = ((ASN1String) asn1).getString();
if (!conf.text().equals(extTextValue)) {
addViolation(failureMsg, "content", extTextValue, conf.text());
}
}
开发者ID:xipki,项目名称:xipki,代码行数:52,代码来源:ExtensionsChecker.java
示例6: perform
import org.bouncycastle.asn1.DERT61String; //导入依赖的package包/类
public TestResult perform()
{
byte[] data = { 0, 1, 0, 1, 0, 0, 1 };
ASN1Primitive values[] = {
new BERConstructedOctetString(data),
new BERSequence(new DERPrintableString("hello world")),
new BERSet(new DERPrintableString("hello world")),
new BERTaggedObject(0, new DERPrintableString("hello world")),
new DERApplicationSpecific(0, data),
new DERBitString(data),
new DERBMPString("hello world"),
new DERBoolean(true),
new DERBoolean(false),
new DEREnumerated(100),
new DERGeneralizedTime("20070315173729Z"),
new DERGeneralString("hello world"),
new DERIA5String("hello"),
new DERInteger(1000),
new DERNull(),
new DERNumericString("123456"),
new DERObjectIdentifier("1.1.1.10000.1"),
new DEROctetString(data),
new DERPrintableString("hello world"),
new DERSequence(new DERPrintableString("hello world")),
new DERSet(new DERPrintableString("hello world")),
new DERT61String("hello world"),
new DERTaggedObject(0, new DERPrintableString("hello world")),
new DERUniversalString(data),
new DERUTCTime(new Date()),
new DERUTF8String("hello world"),
new DERVisibleString("hello world")
};
try
{
ByteArrayOutputStream bOut = new ByteArrayOutputStream();
ASN1OutputStream aOut = new ASN1OutputStream(bOut);
for (int i = 0; i != values.length; i++)
{
aOut.writeObject(values[i]);
}
ASN1Primitive[] readValues = new ASN1Primitive[values.length];
ByteArrayInputStream bIn = new ByteArrayInputStream(bOut.toByteArray());
ASN1InputStream aIn = new ASN1InputStream(bIn);
for (int i = 0; i != values.length; i++)
{
ASN1Primitive o = aIn.readObject();
if (!o.equals(values[i]))
{
return new SimpleTestResult(false, getName() + ": Failed equality test for " + o.getClass());
}
if (o.hashCode() != values[i].hashCode())
{
return new SimpleTestResult(false, getName() + ": Failed hashCode test for " + o.getClass());
}
}
}
catch (Exception e)
{
return new SimpleTestResult(false, getName() + ": Failed - exception " + e.toString(), e);
}
return new SimpleTestResult(true, getName() + ": Okay");
}
开发者ID:credentials,项目名称:irma_future_id,代码行数:71,代码来源:EqualsAndHashCodeTest.java
注:本文中的org.bouncycastle.asn1.DERT61String类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论