Searched refs:md5_uint32 (Results 1 – 4 of 4) sorted by relevance
41 typedef uint32_t md5_uint32; typedef56 typedef unsigned int md5_uint32; typedef59 typedef unsigned short md5_uint32; typedef62 typedef unsigned long md5_uint32; typedef78 md5_uint32 A;79 md5_uint32 B;80 md5_uint32 C;81 md5_uint32 D;83 md5_uint32 total[2];84 md5_uint32 buflen;[all …]
94 __attribute__ ((__aligned__ (__alignof__ (md5_uint32)))); in __md5_crypt_r()113 if ((key - (char *) 0) % __alignof__ (md5_uint32) != 0) in __md5_crypt_r()118 tmp = (char *) alloca (key_len + __alignof__ (md5_uint32)); in __md5_crypt_r()127 memcpy (tmp + __alignof__ (md5_uint32) in __md5_crypt_r()128 - (tmp - (char *) 0) % __alignof__ (md5_uint32), in __md5_crypt_r()130 assert ((key - (char *) 0) % __alignof__ (md5_uint32) == 0); in __md5_crypt_r()133 if ((salt - (char *) 0) % __alignof__ (md5_uint32) != 0) in __md5_crypt_r()135 char *tmp = (char *) alloca (salt_len + __alignof__ (md5_uint32)); in __md5_crypt_r()137 memcpy (tmp + __alignof__ (md5_uint32) in __md5_crypt_r()138 - (tmp - (char *) 0) % __alignof__ (md5_uint32), in __md5_crypt_r()[all …]
16 md5_uint32 correct_words[16]; in __md5_process_block()17 const md5_uint32 *words = buffer; in __md5_process_block()20 md5_uint32 A = ctx->A; in __md5_process_block()21 md5_uint32 B = ctx->B; in __md5_process_block()22 md5_uint32 C = ctx->C; in __md5_process_block()23 md5_uint32 D = ctx->D; in __md5_process_block()24 md5_uint32 lolen = len; in __md5_process_block()37 md5_uint32 A_save = A; in __md5_process_block()38 md5_uint32 B_save = B; in __md5_process_block()39 md5_uint32 C_save = C; in __md5_process_block()[all …]
89 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A); in md5_read_ctx()90 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B); in md5_read_ctx()91 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C); in md5_read_ctx()92 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D); in md5_read_ctx()106 md5_uint32 bytes = ctx->buflen; in md5_finish_ctx()236 # define UNALIGNED_P(p) (((md5_uintptr) p) % __alignof__ (md5_uint32) != 0) in md5_process_bytes()238 # define UNALIGNED_P(p) (((md5_uintptr) p) % sizeof (md5_uint32) != 0) in md5_process_bytes()
Completed in 12 milliseconds