# go-schnorrkel **Repository Path**: jjhoc/go-schnorrkel ## Basic Information - **Project Name**: go-schnorrkel - **Description**: key generator - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # go-schnorrkel Go implementation of the sr25519 signature algorithm (schnorr over ristretto25519). The existing rust implementation is [here.](https://github.com/w3f/schnorrkel) This library is currently able to create sr25519 keys, import sr25519 keys, and sign and verify messages. It is interoperable with the rust implementation. The BIP39 implementation in this library is compatible with the rust [substrate-bip39](https://github.com/paritytech/substrate-bip39) implementation. Note that this is not a standard bip39 implementation. ### dependencies go 1.13 ### usage Example: key generation, signing, and verification ``` package main import ( "fmt" schnorrkel "github.com/ChainSafe/go-schnorrkel" ) func main() { msg := []byte("hello friends") signingCtx := []byte("example") signingTranscript := schnorrkel.NewSigningContext(signingCtx, msg) verifyTranscript := schnorrkel.NewSigningContext(signingCtx, msg) priv, pub, err := schnorrkel.GenerateKeypair() if err != nil { fmt.Println(err) return } sig, err := priv.Sign(signingTranscript) if err != nil { fmt.Println(err) return } ok := pub.Verify(sig, verifyTranscript) if !ok { fmt.Println("did not verify :(") return } } ```