Sign in
edge
/
third_party
/
SermoDigital
/
jose
/
284df88821d50b77f3f90a8ea30b7c1dd2ace0e5
/
.
/
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")
)