From ce617f0a445df1201808a9cd29722a9cf6c96b95 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Sun, 27 Mar 2011 15:09:55 +0100 Subject: Tweaks to allow authenticating to identi.ca with OAuth. Doesn't seem to work completely for whatever the reason may be (invalid signature). I give up for now. Stuff does actually work if you generate access tokens using different software so BitlBee's definitely able to generate good signatures. --- lib/oauth.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib/oauth.c') diff --git a/lib/oauth.c b/lib/oauth.c index 14e7797c..9c67363a 100644 --- a/lib/oauth.c +++ b/lib/oauth.c @@ -107,10 +107,14 @@ static char *oauth_sign( const char *method, const char *url, static char *oauth_nonce() { - unsigned char bytes[9]; + unsigned char bytes[21]; + char *ret = g_new0( char, sizeof( bytes) / 3 * 4 + 1 ); random_bytes( bytes, sizeof( bytes ) ); - return base64_encode( bytes, sizeof( bytes ) ); + base64_encode_real( bytes, sizeof( bytes), (unsigned char*) ret, "0123456789" + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0A" ); + + return ret; } void oauth_params_add( GSList **params, const char *key, const char *value ) -- cgit v1.2.3