Windows2003-3790/public/internal/ds/inc/crypto/descrypt.h

31 lines
493 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
#ifndef __DESCRYPT_H__
#define __DESCRYPT_H__
#ifdef __cplusplus
extern "C" {
#endif
#ifndef DECR_KEY
#define DECR_KEY 0
#define ENCR_KEY 1
#define ENCR_STD 2
#define ENCR_SES 4
#endif
#define CRYPT_ERR 1
#define CRYPT_OK 0
unsigned FAR __cdecl
DES_ECB_LM( unsigned Option,
const char FAR * Key,
unsigned char FAR * Src,
unsigned char FAR * Dst);
#ifdef __cplusplus
}
#endif
#endif // __DESCRYPT_H__