brontide: properly pack nonce as 96-bit little endian value

This commit is contained in:
Olaoluwa Osuntokun 2016-12-12 15:23:47 -08:00
parent fdb111e867
commit b1d28426d5
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

View File

@ -93,7 +93,7 @@ func (c *cipherState) Encrypt(associatedData, cipherText, plainText []byte) []by
}()
var nonce [12]byte
binary.LittleEndian.PutUint64(nonce[:], c.nonce)
binary.LittleEndian.PutUint64(nonce[4:], c.nonce)
return c.cipher.Seal(cipherText, nonce[:], plainText, associatedData)
}
@ -111,7 +111,7 @@ func (c *cipherState) Decrypt(associatedData, plainText, cipherText []byte) ([]b
}()
var nonce [12]byte
binary.LittleEndian.PutUint64(nonce[:], c.nonce)
binary.LittleEndian.PutUint64(nonce[4:], c.nonce)
return c.cipher.Open(plainText, nonce[:], cipherText, associatedData)
}