ecdsa: Correct README.md documentation links.

This commit is contained in:
Dave Collins 2020-04-05 22:26:21 -05:00
parent 6f9bcbbebc
commit 984e09db00
No known key found for this signature in database
GPG Key ID: B8904D9D9C93D1F2

View File

@ -3,7 +3,7 @@ ecdsa
[![Build Status](https://github.com/decred/dcrd/workflows/Build%20and%20Test/badge.svg)](https://github.com/decred/dcrd/actions)
[![ISC License](https://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/decred/dcrd/dcrec/sec256pk1/v3/ecdsa)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://pkg.go.dev/github.com/decred/dcrd/dcrec/secp256k1/v3/ecdsa)
Package ecdsa provides secp256k1-optimized ECDSA signing and verification.
@ -44,7 +44,7 @@ $ go get -u github.com/decred/dcrd/dcrec/secp25k1/v3/ecdsa
Demonstrates signing a message with a secp256k1 private key that is first
parsed from raw bytes and serializing the generated signature.
* [Verify Signature](https://pkg.go.dev/github.com/decred/dcrd/dcrec/secp256k1/v3/ecdsa#example-package-VerifySignature)
* [Verify Signature](https://pkg.go.dev/github.com/decred/dcrd/dcrec/secp256k1/v3/ecdsa#example-Signature.Verify)
Demonstrates verifying a secp256k1 signature against a public key that is
first parsed from raw bytes. The signature is also parsed from raw bytes.