1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // Package crypto collects common cryptographic constants.
13 // Hash identifies a cryptographic hash function that is implemented in another
18 MD4 Hash
= 1 + iota // import code.google.com/p/go.crypto/md4
19 MD5
// import crypto/md5
20 SHA1
// import crypto/sha1
21 SHA224
// import crypto/sha256
22 SHA256
// import crypto/sha256
23 SHA384
// import crypto/sha512
24 SHA512
// import crypto/sha512
25 MD5SHA1
// no implementation; MD5+SHA1 used for TLS RSA
26 RIPEMD160
// import code.google.com/p/go.crypto/ripemd160
30 var digestSizes
= []uint8{
42 // Size returns the length, in bytes, of a digest resulting from the given hash
43 // function. It doesn't require that the hash function in question be linked
45 func (h Hash
) Size() int {
46 if h
> 0 && h
< maxHash
{
47 return int(digestSizes
[h
])
49 panic("crypto: Size of unknown hash function")
52 var hashes
= make([]func() hash
.Hash
, maxHash
)
54 // New returns a new hash.Hash calculating the given hash function. New panics
55 // if the hash function is not linked into the binary.
56 func (h Hash
) New() hash
.Hash
{
57 if h
> 0 && h
< maxHash
{
63 panic("crypto: requested hash function #" + strconv
.Itoa(int(h
)) + " is unavailable")
66 // Available reports whether the given hash function is linked into the binary.
67 func (h Hash
) Available() bool {
68 return h
< maxHash
&& hashes
[h
] != nil
71 // RegisterHash registers a function that returns a new instance of the given
72 // hash function. This is intended to be called from the init function in
73 // packages that implement hash functions.
74 func RegisterHash(h Hash
, f
func() hash
.Hash
) {
76 panic("crypto: RegisterHash of unknown hash function")
81 // PublicKey represents a public key using an unspecified algorithm.
82 type PublicKey
interface{}
84 // PrivateKey represents a private key using an unspecified algorithm.
85 type PrivateKey
interface{}