summaryrefslogtreecommitdiff
path: root/ssl/d1_enc.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-01-04 19:33:30 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-01-04 19:33:30 +0000
commita8515e2d28736090a18cf66345c9bd07cfd6ffcc (patch)
tree7a63d6dea66579d871eda070a9d7e49239a042cf /ssl/d1_enc.c
parent964e91052eac818cb09c740652dbfdca633aa05b (diff)
downloadopenssl-new-a8515e2d28736090a18cf66345c9bd07cfd6ffcc.tar.gz
Since DTLS 1.0 is based on TLS 1.1 we should never return a decryption_failed
alert.
Diffstat (limited to 'ssl/d1_enc.c')
-rw-r--r--ssl/d1_enc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/ssl/d1_enc.c b/ssl/d1_enc.c
index 8fa57347a9..becbab91c2 100644
--- a/ssl/d1_enc.c
+++ b/ssl/d1_enc.c
@@ -231,11 +231,7 @@ int dtls1_enc(SSL *s, int send)
if (!send)
{
if (l == 0 || l%bs != 0)
- {
- SSLerr(SSL_F_DTLS1_ENC,SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
- ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECRYPTION_FAILED);
- return 0;
- }
+ return -1;
}
EVP_Cipher(ds,rec->data,rec->input,l);