diff options
author | Felix Lange <fjl@twurst.com> | 2016-02-10 03:05:49 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-02-12 16:49:18 +0800 |
commit | fdb936ee95d09b1b98418735a813deba6770ad5a (patch) | |
tree | a53f1293b6cd4a87607d1dc8887cad0f6ee0aca7 /crypto/ecies/ecies.go | |
parent | b05e472c076d30035233d6a8b5fb3360b236e3ff (diff) | |
download | dexon-fdb936ee95d09b1b98418735a813deba6770ad5a.tar dexon-fdb936ee95d09b1b98418735a813deba6770ad5a.tar.gz dexon-fdb936ee95d09b1b98418735a813deba6770ad5a.tar.bz2 dexon-fdb936ee95d09b1b98418735a813deba6770ad5a.tar.lz dexon-fdb936ee95d09b1b98418735a813deba6770ad5a.tar.xz dexon-fdb936ee95d09b1b98418735a813deba6770ad5a.tar.zst dexon-fdb936ee95d09b1b98418735a813deba6770ad5a.zip |
crypto/ecies: make authenticated shared data work
The s2 parameter was not actually written to the MAC.
Diffstat (limited to 'crypto/ecies/ecies.go')
-rw-r--r-- | crypto/ecies/ecies.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/ecies/ecies.go b/crypto/ecies/ecies.go index 65dc5b38b..ee4285617 100644 --- a/crypto/ecies/ecies.go +++ b/crypto/ecies/ecies.go @@ -192,11 +192,9 @@ func concatKDF(hash hash.Hash, z, s1 []byte, kdLen int) (k []byte, err error) { // messageTag computes the MAC of a message (called the tag) as per // SEC 1, 3.5. func messageTag(hash func() hash.Hash, km, msg, shared []byte) []byte { - if shared == nil { - shared = make([]byte, 0) - } mac := hmac.New(hash, km) mac.Write(msg) + mac.Write(shared) tag := mac.Sum(nil) return tag } @@ -243,9 +241,11 @@ func symDecrypt(rand io.Reader, params *ECIESParams, key, ct []byte) (m []byte, return } -// Encrypt encrypts a message using ECIES as specified in SEC 1, 5.1. If -// the shared information parameters aren't being used, they should be -// nil. +// Encrypt encrypts a message using ECIES as specified in SEC 1, 5.1. +// +// s1 and s2 contain shared information that is not part of the resulting +// ciphertext. s1 is fed into key derivation, s2 is fed into the MAC. If the +// shared information parameters aren't being used, they should be nil. func Encrypt(rand io.Reader, pub *PublicKey, m, s1, s2 []byte) (ct []byte, err error) { params := pub.Params if params == nil { |