Lines Matching refs:digestbuf
190 char *digestbuf; in statf() local
253 if ((digestbuf = MD5File(p->fts_accpath, NULL)) == NULL) in statf()
256 output(fp, indent, &offset, "%s=%s", MD5KEY, digestbuf); in statf()
257 free(digestbuf); in statf()
262 if ((digestbuf = RMD160File(p->fts_accpath, NULL)) == NULL) in statf()
265 output(fp, indent, &offset, "%s=%s", RMD160KEY, digestbuf); in statf()
266 free(digestbuf); in statf()
271 if ((digestbuf = SHA1File(p->fts_accpath, NULL)) == NULL) in statf()
274 output(fp, indent, &offset, "%s=%s", SHA1KEY, digestbuf); in statf()
275 free(digestbuf); in statf()
280 if ((digestbuf = SHA256_File(p->fts_accpath, NULL)) == NULL) in statf()
283 output(fp, indent, &offset, "%s=%s", SHA256KEY, digestbuf); in statf()
284 free(digestbuf); in statf()
288 if ((digestbuf = SHA384_File(p->fts_accpath, NULL)) == NULL) in statf()
291 output(fp, indent, &offset, "%s=%s", SHA384KEY, digestbuf); in statf()
292 free(digestbuf); in statf()
296 if ((digestbuf = SHA512_File(p->fts_accpath, NULL)) == NULL) in statf()
299 output(fp, indent, &offset, "%s=%s", SHA512KEY, digestbuf); in statf()
300 free(digestbuf); in statf()