comparison libtomcrypt/src/hashes/helper/hash_file.c @ 285:1b9e69c058d2

propagate from branch 'au.asn.ucc.matt.ltc.dropbear' (head 20dccfc09627970a312d77fb41dc2970b62689c3) to branch 'au.asn.ucc.matt.dropbear' (head fdf4a7a3b97ae5046139915de7e40399cceb2c01)
author Matt Johnston <matt@ucc.asn.au>
date Wed, 08 Mar 2006 13:23:58 +0000
parents
children 0cbe8f6dbf9e
comparison
equal deleted inserted replaced
281:997e6f7dc01e 285:1b9e69c058d2
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 * Tom St Denis, [email protected], http://libtomcrypt.org
10 */
11 #include "tomcrypt.h"
12
13 /**
14 @file hash_file.c
15 Hash a file, Tom St Denis
16 */
17
18 /**
19 @param hash The index of the hash desired
20 @param fname The name of the file you wish to hash
21 @param out [out] The destination of the digest
22 @param outlen [in/out] The max size and resulting size of the message digest
23 @result CRYPT_OK if successful
24 */
25 int hash_file(int hash, const char *fname, unsigned char *out, unsigned long *outlen)
26 {
27 #ifdef LTC_NO_FILE
28 return CRYPT_NOP;
29 #else
30 FILE *in;
31 int err;
32 LTC_ARGCHK(fname != NULL);
33 LTC_ARGCHK(out != NULL);
34 LTC_ARGCHK(outlen != NULL);
35
36 if ((err = hash_is_valid(hash)) != CRYPT_OK) {
37 return err;
38 }
39
40 in = fopen(fname, "rb");
41 if (in == NULL) {
42 return CRYPT_FILE_NOTFOUND;
43 }
44
45 err = hash_filehandle(hash, in, out, outlen);
46 if (fclose(in) != 0) {
47 return CRYPT_ERROR;
48 }
49
50 return err;
51 #endif
52 }
53
54
55 /* $Source: /cvs/libtom/libtomcrypt/src/hashes/helper/hash_file.c,v $ */
56 /* $Revision: 1.3 $ */
57 /* $Date: 2005/05/05 14:35:58 $ */