Act on deprecation of LONG and ZLONG, step 2
[openssl.git] / crypto / dsa / dsa_lib.c
index e24c6b526f569b5121df4c4ae16670a8d28373fb..c90d09b0f06f9a4ca2fc58af85872ca4a875a919 100644 (file)
 #include <openssl/engine.h>
 #include <openssl/dh.h>
 
-static const DSA_METHOD *default_DSA_method = NULL;
-
-void DSA_set_default_method(const DSA_METHOD *meth)
-{
-    default_DSA_method = meth;
-}
-
-const DSA_METHOD *DSA_get_default_method(void)
-{
-    if (!default_DSA_method)
-        default_DSA_method = DSA_OpenSSL();
-    return default_DSA_method;
-}
-
 DSA *DSA_new(void)
 {
     return DSA_new_method(NULL);