diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-02 15:28:23 +0200 | 
|---|---|---|
| committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-02 15:28:23 +0200 | 
| commit | dd345753c1742905c9f81aa71d8b09109fbc5456 (patch) | |
| tree | 8689e25f6465c17c3dd5913af6ae289bf13768d4 /lib/misc.c | |
| parent | 0db75ad966458610427dacdd31ecbaddbca18935 (diff) | |
| parent | fa75134008bd9206ca02380927c27581feb65c3e (diff) | |
merge trunk.
Diffstat (limited to 'lib/misc.c')
| -rw-r--r-- | lib/misc.c | 41 | 
1 files changed, 41 insertions, 0 deletions
| @@ -32,6 +32,7 @@  #define BITLBEE_CORE  #include "nogaim.h" +#include "base64.h"  #include <stdio.h>  #include <stdlib.h>  #include <string.h> @@ -596,3 +597,43 @@ gboolean ssl_sockerr_again( void *ssl )  	else  		return sockerr_again();  } + +/* Returns values: -1 == Failure (base64-decoded to something unexpected) +                    0 == Okay +                    1 == Password doesn't match the hash. */ +int md5_verify_password( char *password, char *hash ) +{ +	md5_byte_t *pass_dec = NULL; +	md5_byte_t pass_md5[16]; +	md5_state_t md5_state; +	int ret, i; +	 +	if( base64_decode( hash, &pass_dec ) != 21 ) +	{ +		ret = -1; +	} +	else +	{ +		md5_init( &md5_state ); +		md5_append( &md5_state, (md5_byte_t*) password, strlen( password ) ); +		md5_append( &md5_state, (md5_byte_t*) pass_dec + 16, 5 ); /* Hmmm, salt! */ +		md5_finish( &md5_state, pass_md5 ); +		 +		for( i = 0; i < 16; i ++ ) +		{ +			if( pass_dec[i] != pass_md5[i] ) +			{ +				ret = 1; +				break; +			} +		} +		 +		/* If we reached the end of the loop, it was a match! */ +		if( i == 16 ) +			ret = 0; +	} +	 +	g_free( pass_dec ); + +	return ret; +} | 
