Lines Matching refs:uint32_t

157 static const uint32_t bits32[32] =
175 static uint32_t psbox[4][256];
176 static uint32_t ip_maskl[8][256], ip_maskr[8][256];
177 static uint32_t fp_maskl[8][256], fp_maskr[8][256];
178 static uint32_t key_perm_maskl[8][128], key_perm_maskr[8][128];
179 static uint32_t comp_maskl[8][128], comp_maskr[8][128];
212 uint32_t *p, *il, *ir, *fl, *fr; in _crypt_extended_init()
213 const uint32_t *bits28, *bits24; in _crypt_extended_init()
349 setup_salt(uint32_t salt, struct php_crypt_extended_data *data) in setup_salt()
351 uint32_t obit, saltbit, saltbits; in setup_salt()
373 uint32_t k0, k1, rawkey0, rawkey1; in des_setkey()
377 (uint32_t)(uint8_t)key[3] | in des_setkey()
378 ((uint32_t)(uint8_t)key[2] << 8) | in des_setkey()
379 ((uint32_t)(uint8_t)key[1] << 16) | in des_setkey()
380 ((uint32_t)(uint8_t)key[0] << 24); in des_setkey()
382 (uint32_t)(uint8_t)key[7] | in des_setkey()
383 ((uint32_t)(uint8_t)key[6] << 8) | in des_setkey()
384 ((uint32_t)(uint8_t)key[5] << 16) | in des_setkey()
385 ((uint32_t)(uint8_t)key[4] << 24); in des_setkey()
425 uint32_t t0, t1; in des_setkey()
456 do_des(uint32_t l_in, uint32_t r_in, uint32_t *l_out, uint32_t *r_out, in do_des()
462 uint32_t l, r, *kl, *kr, *kl1, *kr1; in do_des()
463 uint32_t f, r48l, r48r, saltbits; in do_des()
574 des_cipher(const char *in, char *out, uint32_t salt, int count, in des_cipher()
577 uint32_t l_out = 0, r_out = 0, rawl, rawr; in des_cipher()
583 (uint32_t)(uint8_t)in[3] | in des_cipher()
584 ((uint32_t)(uint8_t)in[2] << 8) | in des_cipher()
585 ((uint32_t)(uint8_t)in[1] << 16) | in des_cipher()
586 ((uint32_t)(uint8_t)in[0] << 24); in des_cipher()
588 (uint32_t)(uint8_t)in[7] | in des_cipher()
589 ((uint32_t)(uint8_t)in[6] << 8) | in des_cipher()
590 ((uint32_t)(uint8_t)in[5] << 16) | in des_cipher()
591 ((uint32_t)(uint8_t)in[4] << 24); in des_cipher()
612 uint32_t count, salt, l, r0, r1, keybuf[2]; in _crypt_extended_r()