We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a3d8a commit 21b1ae9Copy full SHA for 21b1ae9
verifiable/credential.go
@@ -564,6 +564,13 @@ func WithStatusResolverRegistry(registry *CredentialStatusResolverRegistry) W3CP
564
}
565
566
567
+// WithMerklizeOptions return new options
568
+func WithMerklizeOptions(merklizeOpts ...merklize.MerklizeOption) W3CProofVerificationOpt {
569
+ return func(opts *w3CProofVerificationConfig) {
570
+ opts.merklizeOptions = merklizeOpts
571
+ }
572
+}
573
+
574
// W3CProofVerificationOpt returns configuration options for W3C proof verification
575
type W3CProofVerificationOpt func(opts *w3CProofVerificationConfig)
576
0 commit comments