Send bad_record_mac instead of decryption_failed
authorMatt Caswell <matt@openssl.org>
Fri, 4 Oct 2019 13:01:21 +0000 (14:01 +0100)
committerMatt Caswell <matt@openssl.org>
Mon, 7 Oct 2019 07:25:42 +0000 (08:25 +0100)
commitf1fd279cceb9eb7a0294a1eab8345c3193f40a0a
treedd1dbd7eac6440b7dd4a5ba3598ab66a5769a714
parenta10765c2e0e94d2cd30711339d2ba3f3a244a206
Send bad_record_mac instead of decryption_failed

The decryption failed alert was deprecated a long time ago. It can
provide an attacker too much information to be able to distinguish between
MAC failures and decryption failures and can lead to oracle attacks.
Instead we should always use the bad_record_mac alert for these issues.
This fixes one instance that still exists. It does not represent a
security issue in this case because it is only ever sent if the record is
publicly invalid, i.e. we have detected it is invalid without using any
secret material.

Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10093)

(cherry picked from commit 37133290832ac2d1389926eba7325125fdacbe8d)
ssl/record/ssl3_record.c