Skip to content

Instantly share code, notes, and snippets.

@arindamroynitw
Created August 26, 2019 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arindamroynitw/23dc5a87e7705c29f732be83092978ae to your computer and use it in GitHub Desktop.
Save arindamroynitw/23dc5a87e7705c29f732be83092978ae to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
func main() {
op := ops.GetKeyOperator()
key := op.Generate(2, 3)
a, b, _ := op.Degenerate(key)
fmt.Printf("key=%v, a=%v, b=%v", key, a, b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment