Sign in
edge
/
apidVerifyApiKey
/
c48842a30a9f78ea4fb4fbbc2a69bbe693683cfa
/
.
/
vendor
/
github.com
/
SermoDigital
/
jose
/
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")
)