diff options
-rw-r--r-- | ecdsa.go | 2 | ||||
-rw-r--r-- | rsa.go | 2 | ||||
-rw-r--r-- | types.go | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -63,7 +63,7 @@ func (pr EcdsaPrivateKey) Sign(message []byte, hash crypto.Hash) ([]byte, error) } // get the private key -func (pr EcdsaPrivateKey) privateKey() crypto.PrivateKey { +func (pr EcdsaPrivateKey) PrivateKey() crypto.PrivateKey { return pr.private_key } @@ -46,7 +46,7 @@ func (pr RsaPrivateKey) Sign(message []byte, hash crypto.Hash) ([]byte, error) { } // get the private key -func (pr RsaPrivateKey) privateKey() crypto.PrivateKey { +func (pr RsaPrivateKey) PrivateKey() crypto.PrivateKey { return pr.private_key } @@ -20,7 +20,7 @@ type ( Sign(message []byte, hash crypto.Hash) ([]byte, error) // return the private key structure - privateKey() crypto.PrivateKey + PrivateKey() crypto.PrivateKey } // interface for any public key |