Home | History | Annotate | Download | only in cert

Lines Matching refs:ta2

291         TrustAnchor ta2 = new TrustAnchor(pemCert, getEncodingPSOnly());
292 assertNull(ta2.getCA());
293 assertNull(ta2.getCAName());
294 assertNull(ta2.getCAPublicKey());
295 assertTrue(Arrays.equals(getEncodingPSOnly(), ta2.getNameConstraints()));
296 assertEquals(pemCert, ta2.getTrustedCert());
466 TrustAnchor ta2 = new TrustAnchor(cert, null);
467 assertSame(cert, ta2.getTrustedCert());
484 TrustAnchor ta2 = new TrustAnchor(x500p, pk, getEncodingNoMinMax());
485 assertTrue(Arrays.equals(getEncodingNoMinMax(), ta2
510 TrustAnchor ta2 = new TrustAnchor(x500p, pk, null);
511 assertNull(ta2.getNameConstraints());
536 TrustAnchor ta2 = new TrustAnchor(x500p, pk, getEncodingNoMinMax());
537 assertNotNull(ta2.toString());