diff options
author | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-07-12 15:43:16 +0000 |
---|---|---|
committer | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-07-12 15:43:16 +0000 |
commit | fd809eed5d8dfcc38868ac118dee228cdd846c4d (patch) | |
tree | a84b7214c7223b21d031e3e0ecf16f7d93c4956a /package/openssl/patches/210-use_cryptodev_by_default_if_available.patch | |
parent | 592adfdf7413d1977bbf5199d7eb8b9f580502b0 (diff) |
add ocf support to openssl, and use it by default if engines are enabled
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11789 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openssl/patches/210-use_cryptodev_by_default_if_available.patch')
-rw-r--r-- | package/openssl/patches/210-use_cryptodev_by_default_if_available.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/openssl/patches/210-use_cryptodev_by_default_if_available.patch b/package/openssl/patches/210-use_cryptodev_by_default_if_available.patch new file mode 100644 index 0000000000..6bcb78601b --- /dev/null +++ b/package/openssl/patches/210-use_cryptodev_by_default_if_available.patch @@ -0,0 +1,28 @@ +--- openssl-0.9.8h/ssl/ssl_algs.c 2007-04-24 01:50:21.000000000 +0200 ++++ openssl-0.9.8h-ocf/ssl/ssl_algs.c 2008-07-12 17:34:27.000000000 +0200 +@@ -57,6 +57,9 @@ + */ + + #include <stdio.h> ++#ifndef OPENSSL_NO_ENGINE ++#include <openssl/engine.h> ++#endif + #include <openssl/objects.h> + #include <openssl/lhash.h> + #include "ssl_locl.h" +@@ -127,6 +130,15 @@ + #endif + /* initialize cipher/digest methods table */ + ssl_load_ciphers(); ++ ++#ifndef OPENSSL_NO_ENGINE ++ /* Initialize available hardware crypto engines */ ++ ENGINE_load_builtin_engines(); ++ ENGINE_register_all_complete(); ++ /* ...and set cryptodev to be the default. */ ++ ENGINE_set_default_ciphers(ENGINE_by_id("cryptodev")); ++#endif ++ + return(1); + } + |