File: smbencrypt.h

package info (click to toggle)
squid3 3.4.8-6
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 31,084 kB
  • sloc: cpp: 165,325; ansic: 21,998; sh: 12,166; makefile: 5,964; perl: 2,153; sql: 322; awk: 118
file content (15 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _SMBLIB_SMBENCRYPT_H
#define _SMBLIB_SMBENCRYPT_H

#ifdef __cplusplus
extern "C" {
#endif

    void SMBencrypt(unsigned char *passwd, unsigned char *c8, unsigned char *p24);
    void SMBNTencrypt(unsigned char *passwd, unsigned char *c8, unsigned char *p24);
    void nt_lm_owf_gen(char *pwd, char *nt_p16, char *p16);

#ifdef __cplusplus
}
#endif
#endif /* _SMBLIB_SMBENCRYPT_H */