Searched refs:cpath (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DCodeSignerTest.java38 private CertPath cpath = TestCertUtils.genCertPath(3, 0); field in class:CodeSignerTest
41 private Timestamp ts = new Timestamp(now, cpath);
60 CodeSigner cs = new CodeSigner(cpath, null);
72 CodeSigner cs = new CodeSigner(cpath, ts);
84 CodeSigner one = new CodeSigner(cpath, ts);
85 CodeSigner two = new CodeSigner(cpath, ts);
86 CodeSigner three = new CodeSigner(cpath, null);
108 assertSame(new CodeSigner(cpath, null).getSignerCertPath(), cpath);
115 assertNull(new CodeSigner(cpath, nul
[all...]
H A DTimestampTest.java43 private CertPath cpath = new MyCertPath(encoding); field in class:TimestampTest
47 new Timestamp(null, cpath);
59 Timestamp timestamp = new Timestamp(now, cpath);
61 assertEquals("not expected cert path", cpath, timestamp.getSignerCertPath());
68 Timestamp one = new Timestamp(now, cpath);
69 Timestamp two = new Timestamp(now, cpath);
77 Timestamp two1 = new Timestamp(new Date(9999), cpath);
83 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath);
87 Timestamp t = new Timestamp(now, cpath);
[all...]

Completed in 48 milliseconds