log warning on bad uid encoding
This commit is contained in:
@@ -438,6 +438,11 @@ public class UncachedKeyRing {
|
||||
badCerts += 1;
|
||||
continue;
|
||||
}
|
||||
// warn user if the signature was made with bad encoding
|
||||
if (!cert.verifySignature(masterKey, userId)) {
|
||||
log.add(LogLevel.WARN, LogType.MSG_KC_UID_WARN_ENCODING,
|
||||
indent, userId);
|
||||
}
|
||||
} catch (PgpGeneralException e) {
|
||||
log.add(LogLevel.WARN, LogType.MSG_KC_UID_BAD_ERR,
|
||||
indent, userId);
|
||||
|
||||
@@ -339,6 +339,7 @@ public class OperationResultParcel implements Parcelable {
|
||||
MSG_KC_UID_REVOKE_DUP (R.string.msg_kc_uid_revoke_dup),
|
||||
MSG_KC_UID_REVOKE_OLD (R.string.msg_kc_uid_revoke_old),
|
||||
MSG_KC_UID_REMOVE (R.string.msg_kc_uid_remove),
|
||||
MSG_KC_UID_WARN_ENCODING (R.string.msg_kc_uid_warn_encoding),
|
||||
|
||||
|
||||
// keyring consolidation
|
||||
|
||||
Reference in New Issue
Block a user