github.com/consensys/gnark-crypto@v0.14.0/internal/generator/ecdsa/template/doc.go.tmpl (about) 1 // Package {{.Package}} provides ECDSA signature scheme on the {{.Name}} curve. 2 // 3 // The implementation is adapted from https://pkg.go.dev/crypto/ecdsa. 4 // Copyright 2011 The Go Authors. All rights reserved. 5 // Use of this source code is governed by a BSD-style 6 // license that can be found in the LICENSE file. 7 // 8 // Documentation: 9 // - Wikipedia: https://en.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm 10 // - FIPS 186-4: https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf 11 // - SEC 1, v-2: https://www.secg.org/sec1-v2.pdf 12 // 13 package {{.Package}}