libgaim/protocols/yahoo/yahoo_auth.h

changeset 14254
77edc7a6191a
parent 14253
b63ebf84c42b
child 20470
77693555855f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libgaim/protocols/yahoo/yahoo_auth.h	Sat Aug 19 01:50:10 2006 +0000
@@ -0,0 +1,33 @@
+/*
+ * 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