1 | /* $Id: sha1.cpp 21742 2009-07-21 12:26:05Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - SHA1 digest creation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | *
|
---|
26 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 | #include <iprt/sha1.h>
|
---|
32 | #include <iprt/stream.h>
|
---|
33 | #include <iprt/string.h>
|
---|
34 | #include <iprt/assert.h>
|
---|
35 | #include <iprt/err.h>
|
---|
36 |
|
---|
37 | #include <openssl/sha.h>
|
---|
38 |
|
---|
39 | /*******************************************************************************
|
---|
40 | * Public RTSHA1Digest interface *
|
---|
41 | *******************************************************************************/
|
---|
42 |
|
---|
43 | RTR3DECL(int) RTSHA1Digest(const char *pszFile, char **ppszDigest)
|
---|
44 | {
|
---|
45 | /* Validate input */
|
---|
46 | if (!pszFile || !ppszDigest)
|
---|
47 | {
|
---|
48 | AssertMsgFailed(("Must supply pszFile and ppszDigest!\n"));
|
---|
49 | return VERR_INVALID_PARAMETER;
|
---|
50 | }
|
---|
51 |
|
---|
52 | *ppszDigest = NULL;
|
---|
53 |
|
---|
54 | /* Initialize OpenSSL */
|
---|
55 | SHA_CTX ctx;
|
---|
56 | if (!SHA1_Init(&ctx))
|
---|
57 | return VERR_INTERNAL_ERROR;
|
---|
58 |
|
---|
59 | /* Open the file to calculate a SHA1 sum of */
|
---|
60 | PRTSTREAM pStream;
|
---|
61 | int rc = RTStrmOpen(pszFile, "r+b", &pStream);
|
---|
62 | if (RT_FAILURE(rc))
|
---|
63 | return rc;
|
---|
64 |
|
---|
65 | /* Read that file in blocks */
|
---|
66 | void *pvBuf[4096];
|
---|
67 | size_t cbRead;
|
---|
68 | do
|
---|
69 | {
|
---|
70 | cbRead = 0;
|
---|
71 | rc = RTStrmReadEx(pStream, pvBuf, 4096, &cbRead);
|
---|
72 | if (RT_FAILURE(rc))
|
---|
73 | break;
|
---|
74 | if(!SHA1_Update(&ctx, pvBuf, cbRead))
|
---|
75 | {
|
---|
76 | rc = VERR_INTERNAL_ERROR;
|
---|
77 | break;
|
---|
78 | }
|
---|
79 | }
|
---|
80 | while (cbRead > 0);
|
---|
81 | RTStrmClose(pStream);
|
---|
82 |
|
---|
83 | if (RT_FAILURE(rc))
|
---|
84 | return rc;
|
---|
85 |
|
---|
86 | /* Finally calculate & format the SHA1 sum */
|
---|
87 | unsigned char pucDig[20];
|
---|
88 | if (!SHA1_Final(pucDig, &ctx))
|
---|
89 | return VERR_INTERNAL_ERROR;
|
---|
90 |
|
---|
91 | int cbRet = RTStrAPrintf(ppszDigest, "%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x",
|
---|
92 | pucDig[0] , pucDig[1] , pucDig[2] , pucDig[3] , pucDig[4],
|
---|
93 | pucDig[5] , pucDig[6] , pucDig[7] , pucDig[8] , pucDig[9],
|
---|
94 | pucDig[10], pucDig[11], pucDig[12], pucDig[13], pucDig[14],
|
---|
95 | pucDig[15], pucDig[16], pucDig[17], pucDig[18], pucDig[19]);
|
---|
96 | if (cbRet == -1)
|
---|
97 | rc = VERR_INTERNAL_ERROR;
|
---|
98 |
|
---|
99 | return rc;
|
---|
100 | }
|
---|
101 |
|
---|