aboutsummaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorArmin <me@obrown.io>2017-12-18 19:28:26 +0800
committerArmin <me@obrown.io>2017-12-18 19:28:34 +0800
commitafc2039f220821155796b64de5f08ccd09fd8412 (patch)
treedbf1bed025be10a8efbfaa18a0344fd423d71b1a /accounts
parent13db4af3450b952c78a09248aa7a6852b69bc0d6 (diff)
downloadgo-tangerine-afc2039f220821155796b64de5f08ccd09fd8412.tar
go-tangerine-afc2039f220821155796b64de5f08ccd09fd8412.tar.gz
go-tangerine-afc2039f220821155796b64de5f08ccd09fd8412.tar.bz2
go-tangerine-afc2039f220821155796b64de5f08ccd09fd8412.tar.lz
go-tangerine-afc2039f220821155796b64de5f08ccd09fd8412.tar.xz
go-tangerine-afc2039f220821155796b64de5f08ccd09fd8412.tar.zst
go-tangerine-afc2039f220821155796b64de5f08ccd09fd8412.zip
accounts/keystore: Improved error message
* Fix for #15668
Diffstat (limited to 'accounts')
-rw-r--r--accounts/keystore/presale.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/accounts/keystore/presale.go b/accounts/keystore/presale.go
index ed900ad08..1554294e1 100644
--- a/accounts/keystore/presale.go
+++ b/accounts/keystore/presale.go
@@ -58,6 +58,9 @@ func decryptPreSaleKey(fileContent []byte, password string) (key *Key, err error
if err != nil {
return nil, errors.New("invalid hex in encSeed")
}
+ if len(encSeedBytes) < 16 {
+ return nil, errors.New("invalid encSeed, too short")
+ }
iv := encSeedBytes[:16]
cipherText := encSeedBytes[16:]
/*