xref: /reactos/dll/win32/secur32/wine/util.h (revision c2c66aff)
1 
2 #ifndef __WINE_UTIL_H__
3 #define __WINE_UTIL_H__
4 
5 /* Functions from util.c */
6 ULONG ComputeCrc32(const BYTE *pData, INT iLen, ULONG initial_crc) DECLSPEC_HIDDEN;
7 SECURITY_STATUS SECUR32_CreateNTLM1SessionKey(PBYTE password, int len, PBYTE session_key) DECLSPEC_HIDDEN;
8 SECURITY_STATUS SECUR32_CreateNTLM2SubKeys(PNegoHelper helper) DECLSPEC_HIDDEN;
9 arc4_info *SECUR32_arc4Alloc(void) DECLSPEC_HIDDEN;
10 void SECUR32_arc4Init(arc4_info *a4i, const BYTE *key, unsigned int keyLen) DECLSPEC_HIDDEN;
11 void SECUR32_arc4Process(arc4_info *a4i, BYTE *inoutString, unsigned int length) DECLSPEC_HIDDEN;
12 void SECUR32_arc4Cleanup(arc4_info *a4i) DECLSPEC_HIDDEN;
13 
14 #endif /* __WINE_UTIL_H__ */
15