crypto: revert to mainline Go crypto lib (#3027)

* crypto: revert to mainline Go crypto lib

We used to use a fork for a modified bcrypt so we could pass our own
randomness but this was largely unecessary, unused, and a burden.
So now we just use the mainline Go crypto lib.

* changelog

* fix tests

* version and changelog
This commit is contained in:
Ethan Buchman
2018-12-16 14:19:38 -05:00
committed by GitHub
parent 1beb45511c
commit 0533c73a50
13 changed files with 29 additions and 23 deletions

View File

@ -18,7 +18,7 @@ const (
// TMCoreSemVer is the current version of Tendermint Core.
// It's the Semantic Version of the software.
// Must be a string because scripts like dist.sh read this file.
TMCoreSemVer = "0.27.2"
TMCoreSemVer = "0.27.3"
// ABCISemVer is the semantic version of the ABCI library
ABCISemVer = "0.15.0"