]> git.ipfire.org Git - thirdparty/squid.git/blame - lib/smblib/smbencrypt.h
SourceFormat Enforcement
[thirdparty/squid.git] / lib / smblib / smbencrypt.h
CommitLineData
04e4e140 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
04e4e140
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
7c16470c
AJ
9#ifndef _SMBLIB_SMBENCRYPT_H
10#define _SMBLIB_SMBENCRYPT_H
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
f53969cc
SM
16void SMBencrypt(unsigned char *passwd, unsigned char *c8, unsigned char *p24);
17void SMBNTencrypt(unsigned char *passwd, unsigned char *c8, unsigned char *p24);
18void nt_lm_owf_gen(char *pwd, char *nt_p16, char *p16);
7c16470c
AJ
19
20#ifdef __cplusplus
21}
22#endif
23#endif /* _SMBLIB_SMBENCRYPT_H */
f53969cc 24