blob: aa06d761d421d997cfdc6f54af581545f691179e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Copyright 2006 The FreeRADIUS server project */
#ifndef _SMBDES_H
#define _SMBDES_H
RCSIDH(smbdes_h, "$Id$")
void smbhash(unsigned char *out, unsigned char const *in, unsigned char *key);
void smbdes_lmpwdhash(char const *password, uint8_t *lmhash);
void smbdes_mschap(uint8_t const win_password[16],
uint8_t const *challenge, uint8_t *response);
#endif /*_SMBDES_H*/
|