blob: 479da5f32f741b3fd6ab89d261d6cf75cbefcea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* header file for compatibility with something useful
*/
typedef unsigned char auth_cblock[8]; /* block size */
typedef struct auth_ks_struct { auth_cblock _; } auth_wrapper_schedule[16];
extern void _XdmcpWrapperToOddParity (unsigned char *in, unsigned char *out);
#ifdef HASXDMAUTH
extern void _XdmcpAuthSetup (auth_cblock key, auth_wrapper_schedule schedule);
extern void _XdmcpAuthDoIt (auth_cblock input, auth_cblock output,
auth_wrapper_schedule schedule, int edflag);
#endif
|