diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-01 00:50:43 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-01 00:50:43 +0800 |
commit | 0d97c3ce1322083fb9683a5afec004b2626b620a (patch) | |
tree | 3db2f5d5446f451d700bf67ef756d85da0fdda25 /crypto | |
parent | bb2e847363146be29b8519ec8c25d089cb5841aa (diff) | |
parent | 19cff8eccafbb6dfbb8cb9038bfb46d95dfdf60d (diff) | |
download | dexon-0d97c3ce1322083fb9683a5afec004b2626b620a.tar.gz dexon-0d97c3ce1322083fb9683a5afec004b2626b620a.tar.zst dexon-0d97c3ce1322083fb9683a5afec004b2626b620a.zip |
Merge branch 'bounty' into develop
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/secp256k1/secp256_rand.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/secp256k1/secp256_rand.go b/crypto/secp256k1/secp256_rand.go index 027b5f386..bb10025fc 100644 --- a/crypto/secp256k1/secp256_rand.go +++ b/crypto/secp256k1/secp256_rand.go @@ -49,7 +49,8 @@ func init() { _rand = mrand.New(mrand.NewSource(int64(seed1 ^ seed2 ^ seed3))) } -func saltByte(buff []byte) []byte { +func saltByte(n int) []byte { + buff := make([]byte, n) for i := 0; i < len(buff); i++ { var v uint64 = uint64(_rand.Int63()) var b byte |