Lines Matching refs:u_char

76 static u_char	IP[64] = {
83 static u_char key_perm[56] = {
90 static u_char key_shifts[16] = {
94 static u_char comp_perm[48] = {
105 static u_char sbox[8][64] = {
156 static u_char pbox[32] = {
173 static u_char bits8[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
180 static u_char m_sbox[4][4096];
220 u_char inv_key_perm[64]; in _crypt_extended_init()
221 u_char inv_comp_perm[56]; in _crypt_extended_init()
222 u_char init_perm[64], final_perm[64]; in _crypt_extended_init()
223 u_char u_sbox[8][64]; in _crypt_extended_init()
224 u_char un_pbox[32]; in _crypt_extended_init()
383 (uint32_t)(u_char)key[3] | in des_setkey()
384 ((uint32_t)(u_char)key[2] << 8) | in des_setkey()
385 ((uint32_t)(u_char)key[1] << 16) | in des_setkey()
386 ((uint32_t)(u_char)key[0] << 24); in des_setkey()
388 (uint32_t)(u_char)key[7] | in des_setkey()
389 ((uint32_t)(u_char)key[6] << 8) | in des_setkey()
390 ((uint32_t)(u_char)key[5] << 16) | in des_setkey()
391 ((uint32_t)(u_char)key[4] << 24); in des_setkey()
589 (uint32_t)(u_char)in[3] | in des_cipher()
590 ((uint32_t)(u_char)in[2] << 8) | in des_cipher()
591 ((uint32_t)(u_char)in[1] << 16) | in des_cipher()
592 ((uint32_t)(u_char)in[0] << 24); in des_cipher()
594 (uint32_t)(u_char)in[7] | in des_cipher()
595 ((uint32_t)(u_char)in[6] << 8) | in des_cipher()
596 ((uint32_t)(u_char)in[5] << 16) | in des_cipher()
597 ((uint32_t)(u_char)in[4] << 24); in des_cipher()
619 u_char *p, *q; in _crypt_extended_r()
628 q = (u_char *) keybuf; in _crypt_extended_r()
629 while ((size_t)(q - (u_char *) keybuf) < sizeof(keybuf)) { in _crypt_extended_r()
669 q = (u_char *) keybuf; in _crypt_extended_r()
670 while ((size_t)(q - (u_char *) keybuf) < sizeof(keybuf) && *key) in _crypt_extended_r()
678 p = (u_char *) data->output + 9; in _crypt_extended_r()
695 p = (u_char *) data->output + 2; in _crypt_extended_r()