ADDED:
* cryptparse, which makes managing certs/keys MUCH much easier (and
  better) than the stdlib utilities.
This commit is contained in:
brent saner
2024-06-21 17:18:19 -04:00
parent c0c924b75a
commit db20c70d86
9 changed files with 1333 additions and 13 deletions

12
cryptparse/errs.go Normal file
View 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")
)