(57 . 8)(57 . 16)
152 if (s == SIZE_MAX)
153 pfatal_with_name(current->name);
154
155 if (s)
156 keccak_hash(current->hash_context,
157 FILE_BUFFER(current) + current->buffered, s);
158
159 current->buffered += s;
160 current->eof = s < size;
161 if(current->eof) {
162 keccak_end(current->hash_context, (char*)current->hash, 64);
163 keccak_free(¤t->hash_context);
164 }
165 }
166 }
167