Lines Matching full:8
126 u_char *challenge, /* IN 8 octets */
143 ChallengeResponse( u_char *challenge, /* IN 8 octets */ in ChallengeResponse()
157 DesEncrypt(challenge, ZPasswordHash + 7, response + 8); in ChallengeResponse()
168 DesEncrypt( u_char *clear, /* IN 8 octets */ in DesEncrypt()
170 u_char *cipher /* OUT 8 octets */) in DesEncrypt()
172 u_char des_key[8]; in DesEncrypt()
182 CHAPDEBUG(LOG_INFO, ("DesEncrypt: 8 octet input : %02X%02X%02X%02X%02X%02X%02X%02X\n", in DesEncrypt()
191 CHAPDEBUG(LOG_INFO, ("DesEncrypt: 8 octet output: %02X%02X%02X%02X%02X%02X%02X%02X\n", in DesEncrypt()
199 DesEncrypt( u_char *clear, /* IN 8 octets */ in DesEncrypt()
201 u_char *cipher /* OUT 8 octets */) in DesEncrypt()
211 CHAPDEBUG(LOG_INFO, ("DesEncrypt: 8 octet input : %02X%02X%02X%02X%02X%02X%02X%02X\n", in DesEncrypt()
218 CHAPDEBUG(LOG_INFO, ("DesEncrypt: 8 octet output: %02X%02X%02X%02X%02X%02X%02X%02X\n", in DesEncrypt()
231 word = (unsigned)input[startBit / 8] << 8; in Get7Bits()
232 word |= (unsigned)input[startBit / 8 + 1]; in Get7Bits()
234 word >>= 15 - (startBit % 8 + 7); in Get7Bits()
241 /* in == 8-byte string (expanded version of the 56-bit key)
256 i += 8; in Expand()
269 for (i = 0; i < 64; i += 8, out++) { in Collapse()
319 /* This implicitly supports 8-bit ISO8859/1 characters. */ in ChapMS_NT()
325 …MDupdate(&md4Context, unicodePassword, secret_len * 2 * 8); /* Unicode is 2 bytes/char, *8 for bi… in ChapMS_NT()
360 DesEncrypt( StdText, UcasePassword + 7, PasswordHash + 8 ); in ChapMS_LANMan()