Sign in
edge
/
third_party
/
SermoDigital
/
jose
/
66866257aa559e924dd64b9ca5d3114621e32673
/
.
/
crypto
/
errors.go
blob: 34fbd25ff7de5d0108bd4e8023e5b25c34413c1f [
file
] [
log
] [
blame
]
package crypto
import "errors"
var (
// ErrInvalidKey means the key argument passed to SigningMethod.Verify
// was not the correct type.
ErrInvalidKey = errors.New("key is invalid")
)