1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2013-2014 Sven Strickroth <email@cs-ware.de>
4 // Copyright (C) VLC project (http://videolan.org)
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "UpdateDownloader.h"
25 enum /* Public key algorithms */
27 /* we will only use DSA public keys */
28 PUBLIC_KEY_ALGO_DSA
= 0x11
31 enum /* Digest algorithms */
33 /* and DSA use SHA-1 digest */
34 DIGEST_ALGO_SHA1
= 0x02
37 enum /* Packet types */
39 SIGNATURE_PACKET
= 0x02,
40 PUBLIC_KEY_PACKET
= 0x06,
44 enum /* Signature types */
46 BINARY_SIGNATURE
= 0x00,
47 TEXT_SIGNATURE
= 0x01,
49 /* Public keys signatures */
50 GENERIC_KEY_SIGNATURE
= 0x10, /* No assumption of verification */
51 PERSONA_KEY_SIGNATURE
= 0x11, /* No verification has been made */
52 CASUAL_KEY_SIGNATURE
= 0x12, /* Some casual verification */
53 POSITIVE_KEY_SIGNATURE
= 0x13 /* Substantial verification */
56 enum /* Signature subpacket types */
58 ISSUER_SUBPACKET
= 0x10
61 struct public_key_packet_t
62 { /* a public key packet (DSA/SHA-1) is 418 bytes */
64 uint8_t version
; /* we use only version 4 */
65 uint8_t timestamp
[4]; /* creation time of the key */
66 uint8_t algo
; /* we only use DSA */
67 /* the multi precision integers, with their 2 bytes length header */
74 /* used for public key and file signatures */
75 struct signature_packet_t
77 uint8_t version
; /* 3 or 4 */
80 uint8_t public_key_algo
; /* DSA only */
81 uint8_t digest_algo
; /* SHA-1 only */
83 uint8_t hash_verification
[2];
84 uint8_t issuer_longid
[8];
86 union /* version specific data */
90 uint8_t hashed_data_len
[2]; /* scalar number */
91 uint8_t *hashed_data
; /* hashed_data_len bytes */
92 uint8_t unhashed_data_len
[2]; /* scalar number */
93 uint8_t *unhashed_data
; /* unhashed_data_len bytes */
97 uint8_t hashed_data_len
; /* MUST be 5 */
98 uint8_t timestamp
[4]; /* 4 bytes scalar number */
102 /* The part below is made of consecutive MPIs, their number and size being
103 * public-key-algorithm dependent.
105 * Since we use DSA signatures only, there is 2 integers, r & s, made of:
106 * 2 bytes for the integer length (scalar number)
107 * 160 bits (20 bytes) for the integer itself
109 * Note: the integers may be less than 160 significant bits
115 typedef struct public_key_packet_t public_key_packet_t
;
116 typedef struct signature_packet_t signature_packet_t
;
120 uint8_t longid
[8]; /* Long id */
121 uint8_t *psz_username
; /* USER ID */
123 public_key_packet_t key
; /* Public key packet */
125 signature_packet_t sig
; /* Signature packet, by the embedded key */
128 typedef struct public_key_t public_key_t
;
130 typedef struct _DSAKEY
132 BLOBHEADER blobheader
;
133 DSSPUBKEY_VER3 dsspubkeyver3
;
134 BYTE p
[128]; // prime modulus
135 BYTE q
[20]; // large factor of P-1
136 BYTE g
[128]; // the generator parameter
137 BYTE y
[128]; // (G^X) mod P
140 int VerifyIntegrity(const CString
&filename
, const CString
&signatureFilename
, CUpdateDownloader
*updateDownloader
);