X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=sigcheck.c;h=900d3514fab414bd30ee85580b58a5c7108c9067;hb=7f6a0a82eafb84548e5a298485533a2fd506f98d;hp=902c9a1e9ce078df9cdaa03e58644906531a5b9a;hpb=78d77be7ae2b6293fe117d8670c0abbe80272238;p=onak.git diff --git a/sigcheck.c b/sigcheck.c index 902c9a1..900d351 100644 --- a/sigcheck.c +++ b/sigcheck.c @@ -34,6 +34,7 @@ #include "md5.h" #include "sha1.h" #endif +#include "sha1x.h" int check_packet_sighash(struct openpgp_publickey *key, struct openpgp_packet *packet, @@ -43,6 +44,7 @@ int check_packet_sighash(struct openpgp_publickey *key, uint8_t *sighash; size_t siglen, unhashedlen; struct sha1_ctx sha1_context; + struct sha1x_ctx sha1x_context; struct md5_ctx md5_context; #ifdef NETTLE_WITH_RIPEMD160 struct ripemd160_ctx ripemd160_context; @@ -187,6 +189,13 @@ int check_packet_sighash(struct openpgp_publickey *key, logthing(LOGTHING_INFO, "RIPEMD160 support not available."); return -1; #endif + case OPENPGP_HASH_SHA1X: + sha1x_init(&sha1x_context); + for (i = 0; i < chunks; i++) { + sha1x_update(&sha1x_context, hashlen[i], hashdata[i]); + } + sha1x_digest(&sha1x_context, 20, hash); + break; case OPENPGP_HASH_SHA224: #ifdef NETTLE_WITH_SHA224 sha224_init(&sha224_context); @@ -249,7 +258,7 @@ int check_packet_sighash(struct openpgp_publickey *key, } logthing(LOGTHING_DEBUG, "Hash type: %d, %d chunks, " - "calculated: %02X%02X / actual: %02X%02X\n", + "calculated: %02X%02X / actual: %02X%02X", hashtype, chunks, hash[0], hash[1], sighash[0], sighash[1]);