open-vault/vendor/github.com/SermoDigital/jose/crypto/errors.go
2017-01-04 16:44:03 -05:00

10 lines
189 B
Go

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")
)