Add links.

This commit is contained in:
Coda Hale 2013-08-20 17:49:14 -07:00
parent 137727d2f8
commit b8b070246b
2 changed files with 4 additions and 1 deletions

View file

@ -1,7 +1,8 @@
rfc6979 rfc6979
======= =======
A Go implementation of RFC 6979's deterministic DSA/ECDSA signature scheme. A Go implementation of [RFC 6979](https://tools.ietf.org/html/rfc6979)'s
deterministic DSA/ECDSA signature scheme.
``` go ``` go
package main package main

View file

@ -12,6 +12,8 @@ Paraphrasing RFC6979:
access to a source of high-quality randomness. access to a source of high-quality randomness.
Provides functions similar to crypto/dsa and crypto/ecdsa. Provides functions similar to crypto/dsa and crypto/ecdsa.
See https://tools.ietf.org/html/rfc6979 for technical details.
*/ */
package rfc6979 package rfc6979