Lines Matching refs:u_char

72 static const u_char	IP[64] = {
79 static const u_char key_perm[56] = {
86 static const u_char key_shifts[16] = {
90 static const u_char comp_perm[48] = {
101 static const u_char sbox[8][64] = {
152 static const u_char pbox[32] = {
169 static const u_char bits8[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
176 static u_char m_sbox[4][4096];
216 u_char inv_key_perm[64]; in _crypt_extended_init()
217 u_char inv_comp_perm[56]; in _crypt_extended_init()
218 u_char init_perm[64], final_perm[64]; in _crypt_extended_init()
219 u_char u_sbox[8][64]; in _crypt_extended_init()
220 u_char un_pbox[32]; in _crypt_extended_init()
379 (uint32_t)(u_char)key[3] | in des_setkey()
380 ((uint32_t)(u_char)key[2] << 8) | in des_setkey()
381 ((uint32_t)(u_char)key[1] << 16) | in des_setkey()
382 ((uint32_t)(u_char)key[0] << 24); in des_setkey()
384 (uint32_t)(u_char)key[7] | in des_setkey()
385 ((uint32_t)(u_char)key[6] << 8) | in des_setkey()
386 ((uint32_t)(u_char)key[5] << 16) | in des_setkey()
387 ((uint32_t)(u_char)key[4] << 24); in des_setkey()
585 (uint32_t)(u_char)in[3] | in des_cipher()
586 ((uint32_t)(u_char)in[2] << 8) | in des_cipher()
587 ((uint32_t)(u_char)in[1] << 16) | in des_cipher()
588 ((uint32_t)(u_char)in[0] << 24); in des_cipher()
590 (uint32_t)(u_char)in[7] | in des_cipher()
591 ((uint32_t)(u_char)in[6] << 8) | in des_cipher()
592 ((uint32_t)(u_char)in[5] << 16) | in des_cipher()
593 ((uint32_t)(u_char)in[4] << 24); in des_cipher()
615 u_char *p, *q; in _crypt_extended_r()
624 q = (u_char *) keybuf; in _crypt_extended_r()
625 while ((size_t)(q - (u_char *) keybuf) < sizeof(keybuf)) { in _crypt_extended_r()
665 q = (u_char *) keybuf; in _crypt_extended_r()
666 while ((size_t)(q - (u_char *) keybuf) < sizeof(keybuf) && *key) in _crypt_extended_r()
674 p = (u_char *) data->output + 9; in _crypt_extended_r()
691 p = (u_char *) data->output + 2; in _crypt_extended_r()