fix bug in canonicalization regarding subkey revocation

This commit is contained in:
Vincent Breitmoser 2014-07-11 03:27:44 +02:00
parent 036a886581
commit d6f3b4b879

View File

@ -558,7 +558,7 @@ public class UncachedKeyRing {
// make sure the certificate checks out
try {
cert.init(masterKey);
if (!cert.verifySignature(key)) {
if (!cert.verifySignature(masterKey, key)) {
log.add(LogLevel.WARN, LogType.MSG_KC_SUB_REVOKE_BAD, indent);
badCerts += 1;
continue;