diff options
Diffstat (limited to 'src/pkg/crypto/crypto.go')
-rw-r--r-- | src/pkg/crypto/crypto.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pkg/crypto/crypto.go b/src/pkg/crypto/crypto.go index 53672a4da..c913494f6 100644 --- a/src/pkg/crypto/crypto.go +++ b/src/pkg/crypto/crypto.go @@ -71,3 +71,6 @@ func RegisterHash(h Hash, f func() hash.Hash) { } hashes[h] = f } + +// PrivateKey represents a private key using an unspecified algorithm. +type PrivateKey interface{} |