diff options
| author | Roxie Linden <roxie@lindenlab.com> | 2010-04-29 02:07:12 -0700 |
|---|---|---|
| committer | Roxie Linden <roxie@lindenlab.com> | 2010-04-29 02:07:12 -0700 |
| commit | 2173bb5f6a58e6f5e1123e89b695e337a3203aae (patch) | |
| tree | 00df57d412cf6ee3555315229f9faa235ed930eb /indra/newview/llsecapi.cpp | |
| parent | d82a10217ad5ac09500e272b74cdacb4bf04414b (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.cpp | 5 |
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(); |
