v1.4.0
ADDED: * cryptparse, which makes managing certs/keys MUCH much easier (and better) than the stdlib utilities.
This commit is contained in:
12
cryptparse/errs.go
Normal file
12
cryptparse/errs.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package cryptparse
|
||||
|
||||
import (
|
||||
`errors`
|
||||
)
|
||||
|
||||
var (
|
||||
ErrBadTlsCipher error = errors.New("invalid TLS cipher suite")
|
||||
ErrBadTlsCurve error = errors.New("invalid TLS curve")
|
||||
ErrBadTlsVer error = errors.New("invalid TLS version")
|
||||
ErrUnknownKey error = errors.New("unknown key type")
|
||||
)
|
||||
Reference in New Issue
Block a user