summaryrefslogtreecommitdiffstats
path: root/fips/des
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-03-25 16:36:46 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-03-25 16:36:46 +0000
commitcd22dfbf0109ae42f650c0d0b1d0e956fe9a1574 (patch)
treea3f3ca931c8dfd6b86d5e5666a6c35575817ca1e /fips/des
parentd4178c8fb1736354d16a6e1b82c5e02433973374 (diff)
Have all algorithm test programs call fips_algtest_init() at startup:
this will perform all standalone operations such as setting error callbacks, entering FIPS mode etc.
Diffstat (limited to 'fips/des')
-rw-r--r--fips/des/fips_desmovs.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/fips/des/fips_desmovs.c b/fips/des/fips_desmovs.c
index 16b8dc1936..88c306370f 100644
--- a/fips/des/fips_desmovs.c
+++ b/fips/des/fips_desmovs.c
@@ -633,11 +633,7 @@ int main(int argc, char **argv)
char fn[250] = "", rfn[256] = "";
int f_opt = 0, d_opt = 1;
-#ifdef OPENSSL_FIPS
- fips_set_error_print();
- if(!FIPS_mode_set(1))
- EXIT(1);
-#endif
+ fips_algtest_init();
if (argc > 1)
{
if (strcasecmp(argv[1], "-d") == 0)