/libcore/ojluni/src/main/java/sun/security/x509/ |
OtherName.java | 35 * This class represents the OtherName as required by the GeneralNames 40 * The ASN.1 definition for OtherName is: 42 * OtherName ::= SEQUENCE { 49 public class OtherName implements GeneralNameInterface { 61 * Create the OtherName object from a passed ObjectIdentfier and 64 * @param oid ObjectIdentifier of this OtherName object 65 * @param value the DER-encoded value of the OtherName 68 public OtherName(ObjectIdentifier oid, byte[] value) throws IOException { 83 * Create the OtherName object from the passed encoded Der value. 85 * @param derValue the encoded DER OtherName [all...] |
GeneralSubtrees.java | 248 // Create new OtherName with same OID as baseName, but 250 ObjectIdentifier otherOID = ((OtherName)name).getOID(); 251 newName = new GeneralName(new OtherName(otherOID, null));
|
GeneralName.java | 38 * otherName [0] OtherName, 95 name = new OtherName(encName);
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
GeneralNameTest.java | 33 import org.apache.harmony.security.x509.OtherName; 44 new GeneralName(new OtherName("1.2.3.4.5", new byte[] { 1, 2, 0, 1 })); 76 OtherName on = 77 new OtherName("1.2.3.4.5", new byte[] { 1, 2, 0, 1 }); 78 byte[] encoding = OtherName.ASN1.encode(on); 80 OtherName.ASN1.decode(encoding);
|
CertificateTest.java | 46 import org.apache.harmony.security.x509.OtherName; 140 new OtherName("1.2.3.4.5", 195 // OtherName:
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
SPVerifier.java | 33 public static final int OtherName = 0; 290 if (name.getAsn1Class() == Asn1Class.Context && name.getTag() == OtherName) { 291 Asn1Constructed otherName = (Asn1Constructed) name; 292 Iterator<Asn1Object> children = otherName.getChildren().iterator();
|
/libcore/luni/src/test/java/tests/security/cert/ |
X509CertSelectorTest.java | 73 import sun.security.x509.OtherName; 508 GeneralName san0 = new GeneralName(new OtherName(new ObjectIdentifier("1.2.3.4.5"), [all...] |
/external/libchrome/base/test/ |
trace_event_analyzer.h | 297 static Query OtherName() { return Query(OTHER_NAME); }
|
trace_event_analyzer.cc | 705 Query match(Query::EventName() == Query::OtherName() && 723 Query match(Query::EventName() == Query::OtherName() &&
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CertSelectorTest.java | 68 import org.apache.harmony.security.x509.OtherName; [all...] |
/libcore/ojluni/src/main/java/java/security/cert/ |
X509CertSelector.java | [all...] |
/prebuilts/go/darwin-x86/src/crypto/x509/ |
x509.go | 841 // otherName [0] OtherName, [all...] |
/prebuilts/go/linux-x86/src/crypto/x509/ |
x509.go | 841 // otherName [0] OtherName, [all...] |
/libcore/ |
openjdk_java_files.mk | [all...] |