key_public.go 104 B

1234567
  1. package curve
  2. import "context"
  3. type KeyPublic interface {
  4. Attack(context.Context) (KeyPair, error)
  5. }