PS2SDK
PS2 Homebrew Libraries
auth.h
1 /*
2  Copyright 2009-2010, jimmikaelkael
3  Licenced under Academic Free License version 3.0
4 */
5 
6 #ifndef __AUTH_H__
7 #define __AUTH_H__
8 
9 // function prototypes
10 extern unsigned char *LM_Password_Hash(const unsigned char *password, unsigned char *cipher);
11 extern unsigned char *NTLM_Password_Hash(const unsigned char *password, unsigned char *cipher);
12 extern unsigned char *LM_Response(const unsigned char *LMhash, unsigned char *chal, unsigned char *cipher);
13 
14 #endif