github.com/palcoin-project/palcd@v1.0.0/chaincfg/chainhash/README.md (about) 1 chainhash 2 ========= 3 4 [![Build Status](https://github.com/btcsuite/btcd/workflows/Build%20and%20Test/badge.svg)](https://github.com/btcsuite/btcd/actions) 5 [![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org) 6 [![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://pkg.go.dev/github.com/btcsuite/btcd/chaincfg/chainhash) 7 ======= 8 9 chainhash provides a generic hash type and associated functions that allows the 10 specific hash algorithm to be abstracted. 11 12 ## Installation and Updating 13 14 ```bash 15 $ go get -u github.com/btcsuite/btcd/chaincfg/chainhash 16 ``` 17 18 ## GPG Verification Key 19 20 All official release tags are signed by Conformal so users can ensure the code 21 has not been tampered with and is coming from the btcsuite developers. To 22 verify the signature perform the following: 23 24 - Download the public key from the Conformal website at 25 https://opensource.conformal.com/GIT-GPG-KEY-conformal.txt 26 27 - Import the public key into your GPG keyring: 28 ```bash 29 gpg --import GIT-GPG-KEY-conformal.txt 30 ``` 31 32 - Verify the release tag with the following command where `TAG_NAME` is a 33 placeholder for the specific tag: 34 ```bash 35 git tag -v TAG_NAME 36 ``` 37 38 ## License 39 40 Package chainhash is licensed under the [copyfree](http://copyfree.org) ISC 41 License.