Interface HonuaPluginReportVerificationExperimental

Result of re-checking an archived certification report's integrity digests.

interface HonuaPluginReportVerification {
    diagnostics: readonly HonuaPluginDiagnostic[];
    ok: boolean;
    status: null | "rejected" | "certified";
}

Properties

Properties

diagnostics: readonly HonuaPluginDiagnostic[]
ok: boolean

True only when every recomputed digest matched the value stored in the report.

status: null | "rejected" | "certified"

The report status when the report parsed, otherwise null.