Home | History | Annotate | Download | only in security

Lines Matching refs:timestamp

51      * The signature timestamp.
55 private Timestamp timestamp;
67 * @param timestamp A signature timestamp.
68 * If {@code null} then no timestamp was generated
73 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) {
78 this.timestamp = timestamp;
91 * Returns the signature timestamp.
93 * @return The timestamp or {@code null} if none is present.
95 public Timestamp getTimestamp() {
96 return timestamp;
102 * timestamp, if present.
108 if (timestamp == null) {
111 myhash = signerCertPath.hashCode() + timestamp.hashCode();
136 Timestamp thatTimestamp = that.getTimestamp();
137 if (timestamp == null) {
143 (! timestamp.equals(thatTimestamp))) {
153 * @return A string comprising the signer's certificate and a timestamp,
160 if (timestamp != null) {
161 sb.append("timestamp: " + timestamp);