You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the siging key and the verification key must be a golang built-in type (e.g. rsa.PrivateKey).
We need to refactor the go-cose library so that Signer and Verifier are interfaces instead of solid structures. With those interface, other developers can make remote signing keys possible and even support FIPS 140-2 by using OpenSSL via CGO.
The text was updated successfully, but these errors were encountered:
Currently, the siging key and the verification key must be a golang built-in type (e.g.
rsa.PrivateKey
).We need to refactor the
go-cose
library so thatSigner
andVerifier
are interfaces instead of solid structures. With those interface, other developers can make remote signing keys possible and even support FIPS 140-2 by using OpenSSL via CGO.The text was updated successfully, but these errors were encountered: