summaryrefslogtreecommitdiff
path: root/indra/newview/llsecapi.cpp
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2010-04-29 02:07:12 -0700
committerRoxie Linden <roxie@lindenlab.com>2010-04-29 02:07:12 -0700
commit2173bb5f6a58e6f5e1123e89b695e337a3203aae (patch)
tree00df57d412cf6ee3555315229f9faa235ed930eb /indra/newview/llsecapi.cpp
parentd82a10217ad5ac09500e272b74cdacb4bf04414b (diff)
Add test for sha1WithRSAEncryption signed certs. Also removed redundant openssl initialization
Diffstat (limited to 'indra/newview/llsecapi.cpp')
-rw-r--r--indra/newview/llsecapi.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llsecapi.cpp b/indra/newview/llsecapi.cpp
index 066ac40793..89b799f297 100644
--- a/indra/newview/llsecapi.cpp
+++ b/indra/newview/llsecapi.cpp
@@ -35,6 +35,7 @@
#include "llsecapi.h"
#include "llsechandler_basic.h"
#include <openssl/evp.h>
+#include <openssl/err.h>
#include <map>
#include "llhttpclient.h"
@@ -45,9 +46,9 @@ LLPointer<LLSecAPIHandler> gSecAPIHandler;
void initializeSecHandler()
{
+ ERR_load_crypto_strings();
OpenSSL_add_all_algorithms();
- OpenSSL_add_all_ciphers();
- OpenSSL_add_all_digests();
+
gHandlerMap[BASIC_SECHANDLER] = new LLSecAPIBasicHandler();