Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-08-01 23:33:08 +0400
committerRichard Levitte <levitte@openssl.org>2002-08-01 23:33:08 +0400
commitdc2ab9f4fa9c927b3b3a56c8a4041d4bd2e19043 (patch)
treeb6b8a9e9a218fae92ad5f4d10d4697f24f3baff4 /demos
parent162d858a9019670d9d622286f3e675372ae387ec (diff)
Add the CBC flag for cbc ciphers
Diffstat (limited to 'demos')
-rw-r--r--demos/engines/rsaref/rsaref.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/engines/rsaref/rsaref.c b/demos/engines/rsaref/rsaref.c
index e23f64c01e..f092acbf3f 100644
--- a/demos/engines/rsaref/rsaref.c
+++ b/demos/engines/rsaref/rsaref.c
@@ -116,7 +116,7 @@ static const EVP_CIPHER cipher_des_cbc =
{
NID_des_cbc,
8, 8, 8,
- 0,
+ 0 | EVP_CIPH_CBC_MODE,
cipher_des_cbc_init,
cipher_des_cbc_code,
cipher_des_cbc_clean,
@@ -131,7 +131,7 @@ static const EVP_CIPHER cipher_des_ede3_cbc =
{
NID_des_ede3_cbc,
8, 24, 8,
- 0,
+ 0 | EVP_CIPH_CBC_MODE,
cipher_des_ede3_cbc_init,
cipher_des_ede3_cbc_code,
cipher_des_ede3_cbc_clean,
@@ -146,7 +146,7 @@ static const EVP_CIPHER cipher_desx_cbc =
{
NID_desx_cbc,
8, 24, 8,
- 0,
+ 0 | EVP_CIPH_CBC_MODE,
cipher_desx_cbc_init,
cipher_desx_cbc_code,
cipher_desx_cbc_clean,