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>2016-01-21 22:45:44 +0300
committerEion Robb <eion@robbmob.com>2016-01-21 22:45:44 +0300
commitfa7de3044b2b3aee17bb941efbeffb35e90baa65 (patch)
treec085cd7c0c32a8fdc3c022c65d89d1186d879943
parentb13aa8d7e31072a60744be5b4495ce0e74aff530 (diff)
Remove the unused base64 headers in NSS RSA encryption
Fixes issue #129
-rw-r--r--steam-mobile/steam_rsa.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/steam-mobile/steam_rsa.c b/steam-mobile/steam_rsa.c
index 95350aa..2f74d8b 100644
--- a/steam-mobile/steam_rsa.c
+++ b/steam-mobile/steam_rsa.c
@@ -24,7 +24,6 @@ password=<base64rsaencryptedpwd>&username=<steamusername>&emailauth=&captchagid=
#ifdef USE_NSS_CRYPTO
#include <nss.h>
-#include <base64.h>
#include <keyhi.h>
#include <keythi.h>
#include <pk11pub.h>
@@ -130,9 +129,6 @@ steam_encrypt_password(const gchar *modulus_str, const gchar *exponent_str, cons
return NULL;
}
- /*tmpstr = BTOA_DataToAscii(encrypted, modlen);
- output = g_strdup(tmpstr);
- PORT_Free(tmpstr);*/
output = purple_base64_encode(encrypted, modlen);
g_free(encrypted);