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