Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/pidgin-opensteamworks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2015-08-30 12:27:35 +0300
committerEion Robb <eion@robbmob.com>2015-08-30 12:27:35 +0300
commit0a8a5dec32fa45d931bb11598d40bec0eb345616 (patch)
tree909ef1f5ba0db01339876f3519e2cec16d153261
parentd3a856c3970acf23faad2e11341dcafe45078135 (diff)
Fix password encrypt function when using OpenSSL
-rw-r--r--steam-mobile/steam_rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/steam-mobile/steam_rsa.c b/steam-mobile/steam_rsa.c
index 4aa5e5d..9706fc8 100644
--- a/steam-mobile/steam_rsa.c
+++ b/steam-mobile/steam_rsa.c
@@ -211,7 +211,7 @@ steam_encrypt_password(const gchar *modulus_str, const gchar *exponent_str, cons
#include <openssl/engine.h>
gchar *
-steam_encrypt_password_openssl(const gchar *modulus_str, const gchar *exponent_str, const gchar *password)
+steam_encrypt_password(const gchar *modulus_str, const gchar *exponent_str, const gchar *password)
{
BIGNUM *bn_modulus;
BIGNUM *bn_exponent;