blob: 939d42a85680204b14412c2ceeb43f823fed91c0 (
plain)
1
2
|
#! /bin/sh
exec ./regression
.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */#ifndef SMBENCRYPT_H
#define SMBENCRYPT_H
#include "smbtypes.h"
#ifdef __cplusplus
extern "C" {
#endif
void SMBencrypt(uint8 *passwd, uint8 *c8, uint8 *p24);
void SMBNTencrypt(uint8 *passwd, uint8 *c8, uint8 *p24);
#ifdef __cplusplus
}
#endif
#endif
|