]> pd.if.org Git - zpackage/blob - libtomcrypt/src/hashes/helper/hash_filehandle.c
commit files needed for zpm-fetchurl
[zpackage] / libtomcrypt / src / hashes / helper / hash_filehandle.c
1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
2  *
3  * LibTomCrypt is a library that provides various cryptographic
4  * algorithms in a highly modular and flexible manner.
5  *
6  * The library is free for all purposes without any express
7  * guarantee it works.
8  */
9 #include "tomcrypt.h"
10
11 #ifndef LTC_NO_FILE
12 /**
13    @file hash_filehandle.c
14    Hash open files, Tom St Denis
15 */
16
17 /**
18   Hash data from an open file handle.
19   @param hash   The index of the hash you want to use
20   @param in     The FILE* handle of the file you want to hash
21   @param out    [out] The destination of the digest
22   @param outlen [in/out] The max size and resulting size of the digest
23   @result CRYPT_OK if successful
24 */
25 int hash_filehandle(int hash, FILE *in, unsigned char *out, unsigned long *outlen)
26 {
27     hash_state md;
28     unsigned char *buf;
29     size_t x;
30     int err;
31
32     LTC_ARGCHK(out    != NULL);
33     LTC_ARGCHK(outlen != NULL);
34     LTC_ARGCHK(in     != NULL);
35
36     if ((buf = XMALLOC(LTC_FILE_READ_BUFSIZE)) == NULL) {
37         return CRYPT_MEM;
38     }
39
40     if ((err = hash_is_valid(hash)) != CRYPT_OK) {
41         goto LBL_ERR;
42     }
43
44     if (*outlen < hash_descriptor[hash].hashsize) {
45        *outlen = hash_descriptor[hash].hashsize;
46        err = CRYPT_BUFFER_OVERFLOW;
47        goto LBL_ERR;
48     }
49     if ((err = hash_descriptor[hash].init(&md)) != CRYPT_OK) {
50        goto LBL_ERR;
51     }
52
53     do {
54         x = fread(buf, 1, LTC_FILE_READ_BUFSIZE, in);
55         if ((err = hash_descriptor[hash].process(&md, buf, (unsigned long)x)) != CRYPT_OK) {
56            goto LBL_CLEANBUF;
57         }
58     } while (x == LTC_FILE_READ_BUFSIZE);
59     if ((err = hash_descriptor[hash].done(&md, out)) == CRYPT_OK) {
60        *outlen = hash_descriptor[hash].hashsize;
61     }
62
63 LBL_CLEANBUF:
64     zeromem(buf, LTC_FILE_READ_BUFSIZE);
65 LBL_ERR:
66     XFREE(buf);
67     return err;
68 }
69 #endif /* #ifndef LTC_NO_FILE */
70
71
72 /* ref:         $Format:%D$ */
73 /* git commit:  $Format:%H$ */
74 /* commit time: $Format:%ai$ */