projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
855a54a
)
Enter FIPS mode by calling FIPS_module_mode_set in openssl.c until
author
Dr. Stephen Henson
<steve@openssl.org>
Thu, 12 May 2011 17:59:47 +0000
(17:59 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Thu, 12 May 2011 17:59:47 +0000
(17:59 +0000)
FIPS_mode_set is implemented.
apps/openssl.c
patch
|
blob
|
history
diff --git
a/apps/openssl.c
b/apps/openssl.c
index 1c880d90ba1d142416ca8d1cbd16668be0a8aec8..b0e64a8b54cb6ddadf71464947d4ffdc80d6f47e 100644
(file)
--- a/
apps/openssl.c
+++ b/
apps/openssl.c
@@
-315,7
+315,10
@@
int main(int Argc, char *ARGV[])
if(getenv("OPENSSL_FIPS")) {
#ifdef OPENSSL_FIPS
- if (!FIPS_mode_set(1)) {
+ /* For now call FIPS_module_mode_set(): will call
+ * FIPS_mode_set() later.
+ */
+ if (!FIPS_module_mode_set(1)) {
ERR_load_crypto_strings();
ERR_print_errors(BIO_new_fp(stderr,BIO_NOCLOSE));
EXIT(1);