HomeSort by relevance Sort by last modified time
    Searched defs:sans (Results 1 - 4 of 4) sorted by null

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateTest.java 152 GeneralNames sans = new GeneralNames(Arrays.asList(san)); local
153 Extension extension = new Extension("2.5.29.17", true, sans.getEncoded());
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertSelectorTest.java 103 protected GeneralNames sans = null; field in class:X509CertSelectorTest.TestCert
112 public TestCert(GeneralNames sans) {
113 setSubjectAlternativeNames(sans);
169 public void setSubjectAlternativeNames(GeneralNames sans) {
170 this.sans = sans;
338 return sans.getPairsList();
408 if ("2.5.29.17".equals(oid) && (sans != null)) {
409 if (sans.getNames() == null) {
413 GeneralNames.ASN1.encode(sans));
1413 Collection sans = sans_1.getPairsList(); local
1615 GeneralNames sans = new GeneralNames(); local
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 1240 List<GeneralName> sans = ((GeneralNames) GeneralNames.ASN1.decode(bytes)) local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java 534 Collection<List<?>> sans = sans1.getPairsList(); local
536 selector.setPathToNames(sans);
631 GeneralNames sans = new GeneralNames(); local
632 sans.addName(san1);
633 sans.addName(san2);
635 TestCert cert_1 = new TestCert(sans);
641 selector.setSubjectAlternativeNames(sans.getPairsList());
1152 Collection<List<?>> sans = sans1.getPairsList(); local
1378 Collection<List<?>> sans = sans1.getPairsList(); local
1581 protected GeneralNames sans = null; field in class:X509CertSelectorTest.TestCert
    [all...]

Completed in 107 milliseconds