const.go 116 B

12345678910
  1. package tool
  2. // 数学曲线标准
  3. type CurveStandard int
  4. const (
  5. P_256 CurveStandard = iota + 1
  6. P_384
  7. P_521
  8. )