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

/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSigner.java48 private CertPath signerCertPath; field in class:CodeSigner
65 * @param signerCertPath The signer's certificate path.
70 * @throws NullPointerException if <code>signerCertPath</code> is
73 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) { argument
74 if (signerCertPath == null) {
77 this.signerCertPath = signerCertPath;
87 return signerCertPath;
109 myhash = signerCertPath.hashCode();
111 myhash = signerCertPath
[all...]
H A DTimestamp.java61 private CertPath signerCertPath; field in class:Timestamp
72 * @param signerCertPath is the TSA's certificate path. It must not be null.
73 * @throws NullPointerException if timestamp or signerCertPath is null.
75 public Timestamp(Date timestamp, CertPath signerCertPath) { argument
76 if (timestamp == null || signerCertPath == null) {
80 this.signerCertPath = signerCertPath;
98 return signerCertPath;
110 myhash = timestamp.hashCode() + signerCertPath.hashCode();
134 signerCertPath
[all...]

Completed in 30 milliseconds