1. Added the null-cipher to the list of supported bulk ciphers.
This commit is contained in:
John Safranek
2019-05-13 11:29:14 -07:00
parent f923409f1f
commit 9d4d877919

View File

@@ -2267,6 +2267,12 @@ static int Decrypt(SSL* ssl, byte* output, const byte* input, word32 sz)
break;
#endif
#ifdef HAVE_NULL_CIPHER
case wolfssl_cipher_null:
XMEMCPY(output, input, sz);
break;
#endif
default:
Trace(BAD_DECRYPT_TYPE);
ret = -1;