Searched refs:signerCertPath (Results 1 – 2 of 2) sorted by relevance
48 private CertPath signerCertPath; field in CodeSigner73 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) { in CodeSigner() argument74 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()
61 private CertPath signerCertPath; field in Timestamp75 public Timestamp(Date timestamp, CertPath signerCertPath) { in Timestamp() argument76 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()