Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / boringssl / src / ssl / ssl_algs.c
index 8f7ede6..a1aa7b2 100644 (file)
 
 #include "ssl_locl.h"
 
+#include <openssl/crypto.h>
 
 extern const ERR_STRING_DATA SSL_error_string_data[];
 
 int SSL_library_init(void)
        {
-       ERR_load_crypto_strings();
-       ERR_load_strings(SSL_error_string_data);
-       ssl_load_ciphers();
+       CRYPTO_library_init();
+       SSL_load_error_strings();
        return(1);
        }