Searched refs:getExtensionValue (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509Extension.java62 * Since not all extensions are known, the <code>getExtensionValue</code>
198 public byte[] getExtensionValue(String oid); method in interface:X509Extension
H A DX509CRLSelector.java623 byte[] crlNumExtVal = xcrl.getExtensionValue("2.5.29.20");
H A DX509CertSelector.java420 * <code>X509Certificate.getExtensionValue(&lt;SubjectKeyIdentifier Object
1970 byte[] rawExtVal = cert.getExtensionValue(EXTENSION_OIDS[extId]);
2109 byte[] extVal = xcert.getExtensionValue("2.5.29.14");
2143 byte[] extVal = xcert.getExtensionValue("2.5.29.35");
/openjdk7/jdk/test/sun/security/util/BitArray/
H A DNamedBitList.java52 check(new DerValue(x1.getExtensionValue()).getUnalignedBitString().length(), 3);
55 check(new DerValue(x2.getExtensionValue()).getUnalignedBitString().length(), 3);
/openjdk7/jdk/test/javax/crypto/JceSecurity/
H A DMyX509CertImpl.java158 public byte[] getExtensionValue(String oid) { method in class:MyX509CertImpl
159 return c.getExtensionValue(oid);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLEntryImpl.java258 byte[] ext = crlEntry.getExtensionValue("2.5.29.21");
312 byte[] extValue = ext.getExtensionValue();
397 public byte[] getExtensionValue(String oid) { method in class:X509CRLEntryImpl
421 byte[] extData = crlExt.getExtensionValue();
H A DCertificateExtensions.java111 ext.getExtensionValue()};
129 System.err.println(h.encodeBuffer(ext.getExtensionValue()));
378 new sun.misc.HexDumpEncoder().encodeBuffer(getExtensionValue());
H A DExtension.java210 public byte[] getExtensionValue() { method in class:Extension
H A DCRLExtensions.java125 ext.getExtensionValue()};
H A DX509CertImpl.java1372 public byte[] getExtensionValue(String oid) { method in class:X509CertImpl
1408 byte[] extData = certExt.getExtensionValue();
1477 byte[] ext = cert.getExtensionValue(EXTENDED_KEY_USAGE_OID);
1647 byte[] ext = cert.getExtensionValue(SUBJECT_ALT_NAME_OID);
1710 byte[] ext = cert.getExtensionValue(ISSUER_ALT_NAME_OID);
H A DX509CRLImpl.java514 byte[] extValue = ext.getExtensionValue();
951 public byte[] getExtensionValue(String oid) { method in class:X509CRLImpl
975 byte[] extData = crlExt.getExtensionValue();
H A DX509CertInfo.java331 byte[] extValue = ext.getExtensionValue();
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/x509/
H A DXMLX509SKI.java114 * @see java.security.cert.X509Extension#getExtensionValue(java.lang.String)
131 byte[] extensionValue = cert.getExtensionValue(XMLX509SKI.SKI_OID);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DAdaptableX509CertSelector.java168 (version < 3 || xcert.getExtensionValue("2.5.29.14") == null)) {
H A DDistributionPointFetcher.java336 byte[] certAKID = certImpl.getExtensionValue(
338 byte[] crlAKID = crlImpl.getExtensionValue(
/openjdk7/jdk/test/java/security/cert/CertPathValidator/trustAnchor/
H A DValidateNC.java100 byte [] nameConstraints = anchorCert.getExtensionValue("2.5.29.30");
/openjdk7/jdk/test/java/security/cert/CertPathBuilder/selfIssued/
H A DDisableRevocation.java203 byte[] extVal = target.getExtensionValue("2.5.29.14");
H A DKeyUsageMatters.java246 byte[] extVal = target.getExtensionValue("2.5.29.14");
H A DStatusLoopDependency.java252 byte[] extVal = target.getExtensionValue("2.5.29.14");
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DTimestampedSigner.java266 tsaCertificate.getExtensionValue(SUBJECT_INFO_ACCESS_OID);
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleExtensions.java147 public String getExtensionValue(Character key) { method in class:LocaleExtensions
/openjdk7/jdk/test/java/security/KeyStore/
H A DDefaultEntryType.java134 public byte[] getExtensionValue(String oid) { return (byte[])null; } method in class:DefaultEntryType.X509Cert
/openjdk7/jdk/test/sun/security/tools/keytool/
H A DKeyToolTest.java1165 assertTrue(a.getExtensionValue("1.2.3").length == 3);
1166 assertTrue(a.getExtensionValue("1.2.4").length == 4);
1167 assertTrue(a.getExtensionValue("1.2.5").length == 5);
1170 assertTrue(a.getExtensionValue("2.3.4").length == 6);
/openjdk7/jdk/src/share/classes/sun/security/validator/
H A DSimpleValidator.java283 byte[] extVal = cert.getExtensionValue(OID_NETSCAPE_CERT_TYPE);
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DKeySelectors.java253 byte[] extension = c.getExtensionValue("2.5.29.14");

Completed in 155 milliseconds

12