mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
b7ec4f6183
Signing tool for PE-COFF binaries, hopefully at least vaguely compliant with the PE and Authenticode specifications. Sponsored by: The FreeBSD Foundation
17 lines
417 B
C
17 lines
417 B
C
--- src/efisiglist.c.orig 2014-10-24 21:51:06.000000000 +0200
|
|
+++ src/efisiglist.c 2015-01-16 10:01:33.000000000 +0100
|
|
@@ -38,11 +38,11 @@ struct hash_param {
|
|
|
|
static struct hash_param hash_params[] = {
|
|
{.name = "sha256",
|
|
- .guid = &efi_guid_sha256,
|
|
+ .guid = (void *)&efi_guid_sha256,
|
|
.size = 32,
|
|
},
|
|
{.name = "sha1",
|
|
- .guid = &efi_guid_sha1,
|
|
+ .guid = (void *)&efi_guid_sha1,
|
|
.size = 20,
|
|
},
|
|
};
|