mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-11 22:45:22 +00:00
10 lines
189 B
Go
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")
|
|
)
|