Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 26s
12 lines
676 B
Plaintext
12 lines
676 B
Plaintext
;; next/genesis/sig-suites/ed25519-2020.sx
|
|
;;
|
|
;; W3C Verifiable Credential signature suite — Ed25519 over
|
|
;; canonical bytes, key material in multibase. Default suite
|
|
;; for fed-sx actors per design §9.
|
|
|
|
(DefineSigSuite
|
|
:name "ed25519-2020"
|
|
:doc "Ed25519 verification. Key carries publicKeyMultibase.\n :verify takes canonical-bytes + signature + key and\n returns bool. Real verification deferred to m2 once\n crypto:verify_ed25519/3 BIF lands; v1 stand-in returns\n false to defer all Ed25519-signed activities."
|
|
:verify (fn (canonical-bytes signature key) false)
|
|
:key-format (fn (key-doc) (string? (-> key-doc :publicKeyMultibase))))
|