Lines Matching refs:u_char

100     u_char LANManResp[24];
101 u_char NTResp[24];
102 u_char UseNT; /* If 1, ignore the LANMan response field */
117 static void DesEncrypt (u_char *, u_char *, u_char *);
118 static void MakeKey (u_char *, u_char *);
121 static void Expand (u_char *, u_char *);
122 static void Collapse (u_char *, u_char *);
126 u_char *challenge, /* IN 8 octets */
127 u_char *pwHash, /* IN 16 octets */
128 u_char *response /* OUT 24 octets */
137 static u_char Get7Bits(
138 u_char *input,
143 ChallengeResponse( u_char *challenge, /* IN 8 octets */
144 u_char *pwHash, /* IN 16 octets */
145 u_char *response /* OUT 24 octets */)
147 u_char ZPasswordHash[21];
168 DesEncrypt( u_char *clear, /* IN 8 octets */
169 u_char *key, /* IN 7 octets */
170 u_char *cipher /* OUT 8 octets */)
172 u_char des_key[8];
173 u_char crypt_key[66];
174 u_char des_input[66];
199 DesEncrypt( u_char *clear, /* IN 8 octets */
200 u_char *key, /* IN 7 octets */
201 u_char *cipher /* OUT 8 octets */)
226 static u_char
227 Get7Bits( u_char *input, int startBit)
246 Expand(u_char *in, u_char *out)
263 Collapse(u_char *in, u_char *out)
280 MakeKey( u_char *key, /* IN 56 bit DES key missing parity bits */
281 u_char *des_key /* OUT 64 bit DES key with parity bits added */)
313 u_char unicodePassword[MAX_NT_PASSWORD * 2];
322 unicodePassword[i * 2] = (u_char)secret[i];
337 ChallengeResponse((u_char*)rchallenge, (u_char*)md4Context.buffer, response->NTResp);
341 static u_char *StdText = (u_char *)"KGS!@#$%"; /* key from rasapi32.dll */
351 u_char UcasePassword[MAX_NT_PASSWORD]; /* max is actually 14 */
352 u_char PasswordHash[16];
357 UcasePassword[i] = (u_char)toupper(secret[i]);