Skip to content

Commit

Permalink
Fix ECIES params nil bug
Browse files Browse the repository at this point in the history
* Change ECIES params init function to static var as it does not have
  state; fixes TestMarshalencryption.
  • Loading branch information
Gustav Simonsson committed Feb 12, 2015
1 parent 04c1a81 commit 5136fc9
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions params.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,8 @@ type ECIESParams struct {
// * ECIES using AES256 and HMAC-SHA-256-32
// * ECIES using AES256 and HMAC-SHA-384-48
// * ECIES using AES256 and HMAC-SHA-512-64
var (
ECIES_AES128_SHA256 *ECIESParams
ECIES_AES256_SHA256 *ECIESParams
ECIES_AES256_SHA384 *ECIESParams
ECIES_AES256_SHA512 *ECIESParams
)

func init() {
var (
ECIES_AES128_SHA256 = &ECIESParams{
Hash: sha256.New,
hashAlgo: crypto.SHA256,
Expand Down Expand Up @@ -75,7 +69,7 @@ func init() {
BlockSize: aes.BlockSize,
KeyLen: 32,
}
}
)

var paramsFromCurve = map[elliptic.Curve]*ECIESParams{
elliptic.P256(): ECIES_AES128_SHA256,
Expand Down

0 comments on commit 5136fc9

Please sign in to comment.