libpurple/protocols/yahoo/yahoo_auth.h

Sun, 24 Feb 2008 18:21:02 +0000

author
John Bailey <rekkanoryo@rekkanoryo.org>
date
Sun, 24 Feb 2008 18:21:02 +0000
changeset 22462
aebf8eeaa9f2
parent 15435
4b933b06d75e
child 16238
33bf2fd32108
child 18068
b6554e3c8224
child 20478
46933dc62880
child 24295
df840f218c78
permissions
-rwxr-xr-x

merge of '1645a2a1b3fb1203c369db51ff9668e2ce3cd9f1'
and '458640401515810f0ebb68460e4f3272daa660b9'

/*
 * yahoo_auth.h: Header for Yahoo Messenger authentication schemes.  Eew.
 *
 * Copyright(c) 2003 Cerulean Studios
 */

#ifndef _YAHOO_AUTH_H_
#define _YAHOO_AUTH_H_ 

#define NUM_TYPE_THREES 105
#define NUM_TYPE_FOURS 56
#define NUM_TYPE_FIVES 37

unsigned int yahoo_auth_finalCountdown(unsigned int challenge, int divisor, int inner_loop, int outer_loop);

/* We've defined the Yahoo authentication functions as having types 1-5; all take either 1 or 2 arguments.
 */

typedef struct _auth {
	int				type;
	int				var1; 
	int				var2;
} auth_function_t;

/* Type 3, 4 and 5 require lookups into ypager.exe's many static chunks of 256 bytes.  Store them here.
 */

struct buffer_t {
	unsigned int	buffer_start;
	unsigned char	buffer[257];
};

#endif /* _YAHOO_AUTH_H_ */

mercurial