open-consul/vendor/github.com/SermoDigital/jose/crypto/errors.go

10 lines
189 B
Go
Raw Normal View History

2018-06-21 14:49:35 +00:00
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")
)