comparison src/ntlm.h @ 13084:31a3a9af1494

[gaim-migrate @ 15446] simple: successfully register at MS LCS no presence working at the moment committer: Tailor Script <tailor@pidgin.im>
author Thomas Butter <tbutter>
date Tue, 31 Jan 2006 21:02:52 +0000
parents 7e98b3bf2fdf
children a91a8a28f61f
comparison
equal deleted inserted replaced
13083:1b81ab9c8441 13084:31a3a9af1494
39 * Parses the ntlm type 2 message 39 * Parses the ntlm type 2 message
40 * 40 *
41 * @param type2 String containing the base64 encoded type2 message 41 * @param type2 String containing the base64 encoded type2 message
42 * @return The nonce for use in message type3 42 * @return The nonce for use in message type3
43 */ 43 */
44 gchar *gaim_ntlm_parse_type2(gchar *type2); 44 gchar *gaim_ntlm_parse_type2(gchar *type2, guint32 *flags);
45 45
46 /** 46 /**
47 * Generates a type3 message 47 * Generates a type3 message
48 * 48 *
49 * @param username The username 49 * @param username The username
50 * @param passw The password 50 * @param passw The password
51 * @param hostname The hostname 51 * @param hostname The hostname
52 * @param domain The domain to authenticate against 52 * @param domain The domain to authenticate against
53 * @param nonce The nonce returned by gaim_ntlm_parse_type2 53 * @param nonce The nonce returned by gaim_ntlm_parse_type2
54 * @param flags Pointer to the flags returned by gaim_ntlm_parse_type2
54 * @return A base64 encoded type3 message 55 * @return A base64 encoded type3 message
55 */ 56 */
56 gchar *gaim_ntlm_gen_type3(gchar *username, gchar *passw, gchar *hostname, gchar *domain, gchar *nonce); 57 gchar *gaim_ntlm_gen_type3(gchar *username, gchar *passw, gchar *hostname, gchar *domain, gchar *nonce, guint32 *flags);
57 58
58 #endif /* _GAIM_NTLM_H */ 59 #endif /* _GAIM_NTLM_H */