key_private.go 146 B

123456789101112
  1. package dhellman
  2. import (
  3. "math/big"
  4. "git.ali33.ru/fcg-xvii/curve/v2/tools"
  5. )
  6. type keyPrivate struct {
  7. curve *tools.Curve
  8. x *big.Int
  9. }