Lines Matching refs:hash
11 * see http://valerieaurora.org/hash.html).
32 Calculate md5 hash for each input file, reading from stdin if none.
33 Output one hash (32 hex digits) for each input file, followed by filename.
35 -b Brief (hash only, no filename)
36 -c Check each line of each FILE is the same hash+filename we'd output
45 Calculate sha hash for each input file, reading from stdin if none. Output
46 one hash (40 hex digits for sha1, 56 for sha224, 64 for sha256, 96 for sha384,
49 -b Brief (hash only, no filename)
50 -c Check each line of each FILE is the same hash+filename we'd output
124 // Mix next 64 bytes of data into md5 hash
166 // Mix next 64 bytes of data into sha1 hash.
251 struct hash {
266 }, * hash;
272 hash = algorithms+i;
274 hash->init(&ctx);
278 hash->update(&ctx, toybuf, i);
280 hash->final(toybuf+128, &ctx);
282 for (i = 0; i<hash->digest_length; i++)
338 // Call builtin or lib hash function, then display output if necessary