summaryrefslogtreecommitdiffstats
path: root/fips/des
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-14 11:15:10 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-04-14 11:15:10 +0000
commitac892b7aa6532e0345e430208335403ead5d2de1 (patch)
tree00f6a544791b74740dbfe115ac6fc7fd4d465de5 /fips/des
parent77394d7e8f2ca8ca01cfe9b002e3df62ae34a23b (diff)
Initial incomplete POST overhaul: add support for POST callback to
allow status of POST to be monitored and/or failures induced.
Diffstat (limited to 'fips/des')
-rw-r--r--fips/des/fips_des_selftest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fips/des/fips_des_selftest.c b/fips/des/fips_des_selftest.c
index 6ce556e2bd..9eea546560 100644
--- a/fips/des/fips_des_selftest.c
+++ b/fips/des/fips_des_selftest.c
@@ -115,7 +115,7 @@ int FIPS_selftest_des()
/* Encrypt/decrypt with 3DES and compare to known answers */
for(n=0 ; n < 2 ; ++n)
{
- if (!fips_cipher_test(&ctx, EVP_des_ede3_ecb(),
+ if (!fips_cipher_test(FIPS_TEST_CIPHER, &ctx, EVP_des_ede3_ecb(),
tests3[n].key, NULL,
tests3[n].plaintext, tests3[n].ciphertext, 8))
goto err;