Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/security/
DCodeSigner.java48 private CertPath signerCertPath; field in CodeSigner
73 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) { in CodeSigner() argument
74 if (signerCertPath == null) { in CodeSigner()
77 this.signerCertPath = signerCertPath; in CodeSigner()
87 return signerCertPath; in getSignerCertPath()
109 myhash = signerCertPath.hashCode(); in hashCode()
111 myhash = signerCertPath.hashCode() + timestamp.hashCode(); in hashCode()
147 return signerCertPath.equals(that.getSignerCertPath()); in equals()
159 sb.append("Signer: " + signerCertPath.getCertificates().get(0)); in toString()
DTimestamp.java61 private CertPath signerCertPath; field in Timestamp
75 public Timestamp(Date timestamp, CertPath signerCertPath) { in Timestamp() argument
76 if (timestamp == null || signerCertPath == null) { in Timestamp()
80 this.signerCertPath = signerCertPath; in Timestamp()
98 return signerCertPath; in getSignerCertPath()
110 myhash = timestamp.hashCode() + signerCertPath.hashCode(); in hashCode()
134 signerCertPath.equals(that.getSignerCertPath())); in equals()
147 List<? extends Certificate> certs = signerCertPath.getCertificates(); in toString()