Lines Matching refs:uint32_t

161 static uint32_t bits32[32] =
181 static uint32_t psbox[4][256];
182 static uint32_t ip_maskl[8][256], ip_maskr[8][256];
183 static uint32_t fp_maskl[8][256], fp_maskr[8][256];
184 static uint32_t key_perm_maskl[8][128], key_perm_maskr[8][128];
185 static uint32_t comp_maskl[8][128], comp_maskr[8][128];
218 uint32_t *p, *il, *ir, *fl, *fr; in _crypt_extended_init()
219 uint32_t *bits28, *bits24; in _crypt_extended_init()
355 setup_salt(uint32_t salt, struct php_crypt_extended_data *data) in setup_salt()
357 uint32_t obit, saltbit, saltbits; in setup_salt()
379 uint32_t k0, k1, rawkey0, rawkey1; in des_setkey()
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()
431 uint32_t t0, t1; in des_setkey()
462 do_des(uint32_t l_in, uint32_t r_in, uint32_t *l_out, uint32_t *r_out, in do_des()
468 uint32_t l, r, *kl, *kr, *kl1, *kr1; in do_des()
469 uint32_t f, r48l, r48r, saltbits; in do_des()
580 des_cipher(const char *in, char *out, uint32_t salt, int count, in des_cipher()
583 uint32_t l_out = 0, r_out = 0, rawl, rawr; in des_cipher()
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()
618 uint32_t count, salt, l, r0, r1, keybuf[2]; in _crypt_extended_r()