| 1 | #ifndef SMBENCRYPT_H |
| 2 | #define SMBENCRYPT_H |
| 3 | |
| 4 | #include "smbtypes.h" |
| 5 | |
| 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
| 9 | void SMBencrypt(uint8 *passwd, uint8 *c8, uint8 *p24); |
| 10 | void SMBNTencrypt(uint8 *passwd, uint8 *c8, uint8 *p24); |
| 11 | #ifdef __cplusplus |
| 12 | } |
| 13 | |
| 14 | #endif |
| 15 | #endif |

