mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
crypto/ecies: fix error message
This commit is contained in:
parent
d23792f333
commit
2775eedf9f
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ var (
|
||||||
DefaultCurve = ethcrypto.S256()
|
DefaultCurve = ethcrypto.S256()
|
||||||
ErrUnsupportedECDHAlgorithm = fmt.Errorf("ecies: unsupported ECDH algorithm")
|
ErrUnsupportedECDHAlgorithm = fmt.Errorf("ecies: unsupported ECDH algorithm")
|
||||||
ErrUnsupportedECIESParameters = fmt.Errorf("ecies: unsupported ECIES parameters")
|
ErrUnsupportedECIESParameters = fmt.Errorf("ecies: unsupported ECIES parameters")
|
||||||
ErrInvalidKeyLen = fmt.Errorf("ecies: invalid key size (> 256) in ECIESParams")
|
ErrInvalidKeyLen = fmt.Errorf("ecies: invalid key size (> %d) in ECIESParams", maxKeyLen)
|
||||||
)
|
)
|
||||||
|
|
||||||
// KeyLen is limited to prevent overflow of the counter
|
// KeyLen is limited to prevent overflow of the counter
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue