message.go 224 B

1234567891011121314
  1. package elgamal
  2. import "git.ali33.ru/fcg-xvii/curve/v2/tools"
  3. type Message struct {
  4. c *Curve
  5. c1 *tools.Point
  6. cd []*tools.Point
  7. encoded []byte
  8. }
  9. func (s *Message) Encoded() []byte {
  10. return s.encoded
  11. }