mirror of https://github.com/cheat/cheat.git
25 lines
647 B
Go
25 lines
647 B
Go
package openpgp
|
|
|
|
import (
|
|
"crypto"
|
|
|
|
"github.com/ProtonMail/go-crypto/openpgp/internal/algorithm"
|
|
)
|
|
|
|
// HashIdToHash returns a crypto.Hash which corresponds to the given OpenPGP
|
|
// hash id.
|
|
func HashIdToHash(id byte) (h crypto.Hash, ok bool) {
|
|
return algorithm.HashIdToHash(id)
|
|
}
|
|
|
|
// HashIdToString returns the name of the hash function corresponding to the
|
|
// given OpenPGP hash id.
|
|
func HashIdToString(id byte) (name string, ok bool) {
|
|
return algorithm.HashIdToString(id)
|
|
}
|
|
|
|
// HashToHashId returns an OpenPGP hash id which corresponds the given Hash.
|
|
func HashToHashId(h crypto.Hash) (id byte, ok bool) {
|
|
return algorithm.HashToHashId(h)
|
|
}
|