@peculiar/asn1-tsp
Version:
Internet X.509 Public Key Infrastructure Time-Stamp Protocol (TSP)
13 lines (12 loc) • 587 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PKIStatus = void 0;
var PKIStatus;
(function (PKIStatus) {
PKIStatus[PKIStatus["granted"] = 0] = "granted";
PKIStatus[PKIStatus["grantedWithMods"] = 1] = "grantedWithMods";
PKIStatus[PKIStatus["rejection"] = 2] = "rejection";
PKIStatus[PKIStatus["waiting"] = 3] = "waiting";
PKIStatus[PKIStatus["revocationWarning"] = 4] = "revocationWarning";
PKIStatus[PKIStatus["revocationNotification"] = 5] = "revocationNotification";
})(PKIStatus || (exports.PKIStatus = PKIStatus = {}));