mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
393 B
22 lines
393 B
#ifndef __AWGLOBAL_H__
|
|
#define __AWGLOBAL_H__ 1
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "rsa.h"
|
|
|
|
BYTE TransByte(BYTE in);
|
|
BYTE UnTransByte(BYTE in);
|
|
WORD Conv11to5(BYTE FAR *src, BYTE FAR *dest, WORD group);
|
|
void Conv5to11(BYTE FAR *src, BYTE FAR *dest, WORD group);
|
|
|
|
void RestoreKeyFromData (BSAFE_KEY BSAFE_PTR, LPWORD);
|
|
DWORD RandDWord(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|