peridot/vendor/github.com/ProtonMail/go-crypto/openpgp/internal/ecc/curveType.go

10 lines
152 B
Go
Raw Normal View History

2022-07-07 20:11:50 +00:00
package ecc
type CurveType uint8
const (
NISTCurve CurveType = 1
Curve25519 CurveType = 2
BitCurve CurveType = 3
BrainpoolCurve CurveType = 4
)