0
0
Fork 0

adjust comments on ecdsa a bit

This commit is contained in:
Gibheer 2015-03-16 17:11:08 +01:00
parent 4157d8e07a
commit b7f4f3ae21
1 changed files with 2 additions and 2 deletions

View File

@ -32,14 +32,14 @@ type (
}
)
// generate a new ecdsa private key
// Create a new ECDSA private key using the specified curve.
func NewPrivateKeyEcdsa(curve elliptic.Curve) (*EcdsaPrivateKey, error) {
key, err := ecdsa.GenerateKey(curve, rand.Reader)
if err != nil { return nil, err }
return &EcdsaPrivateKey{key}, nil
}
// load the private key from the raw data
// Load the private key from the asn1 representation.
func LoadPrivateKeyEcdsa(raw []byte) (*EcdsaPrivateKey, error) {
key, err := x509.ParseECPrivateKey(raw)
if err != nil { return nil, err }