curve_key_private.go 552 B

12345678910111213141516171819202122232425262728
  1. package dhellman
  2. import (
  3. "math/big"
  4. "git.ali33.ru/fcg-xvii/curve/v2/tools"
  5. )
  6. func randomCurveKeyPrivate(curve *tools.Curve) (priv *curveKeyPrivate, err error) {
  7. if err = curve.IsValidP(); err != nil {
  8. return
  9. }
  10. priv = &curveKeyPrivate{
  11. x: tools.Random(big.NewInt(1), tools.Sub64(curve.P(), 1)),
  12. }
  13. return
  14. }
  15. type curveKeyPrivate struct {
  16. x *big.Int
  17. }
  18. func (s *curveKeyPrivate) secret(pub *curveKeyPublic, curve *tools.Curve) (*tools.Point, error) {
  19. if err := curve.IsValidG(); err != nil {
  20. return nil, err
  21. }
  22. return pub.p.Mul(s.x)
  23. }