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