Skip to content

Commit 6d56b18

Browse files
committed
Fix :sha1 fingerprints for certkeys
1 parent 71eca46 commit 6d56b18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cert-key.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ The bytes for signing represent everything up to the signature."
471471

472472
(defmethod fingerprint ((hash-spec (eql :sha1)) (key certificate) &key)
473473
"Computes the SHA1 fingerprint of the embedded client public key"
474-
(with-slots ((public-key cert-key)) key
474+
(with-accessors ((public-key cert-key)) key
475475
(fingerprint :sha1 public-key)))
476476

477477
(defmethod fingerprint ((hash-spec (eql :sha256)) (key certificate) &key)

0 commit comments

Comments
 (0)