pkijs
Version:
Public Key Infrastructure (PKI) is the basis of how identity and key management is performed on the web today. PKIjs is a pure JavaScript library implementing the formats that are used in PKI applications. It is built on WebCrypto and aspires to make it p
332 lines (289 loc) • 11.4 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _asn1js = require("asn1js");
var asn1js = _interopRequireWildcard(_asn1js);
var _pvutils = require("pvutils");
var _CertID = require("./CertID.js");
var _CertID2 = _interopRequireDefault(_CertID);
var _Extension = require("./Extension.js");
var _Extension2 = _interopRequireDefault(_Extension);
var _Extensions = require("./Extensions.js");
var _Extensions2 = _interopRequireDefault(_Extensions);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
//**************************************************************************************
/**
* Class from RFC6960
*/
var SingleResponse = function () {
//**********************************************************************************
/**
* Constructor for SingleResponse class
* @param {Object} [parameters={}]
* @property {Object} [schema] asn1js parsed value
*/
function SingleResponse() {
var parameters = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
_classCallCheck(this, SingleResponse);
//region Internal properties of the object
/**
* @type {CertID}
* @description certID
*/
this.certID = (0, _pvutils.getParametersValue)(parameters, "certID", SingleResponse.defaultValues("certID"));
/**
* @type {Object}
* @description certStatus
*/
this.certStatus = (0, _pvutils.getParametersValue)(parameters, "certStatus", SingleResponse.defaultValues("certStatus"));
/**
* @type {Date}
* @description thisUpdate
*/
this.thisUpdate = (0, _pvutils.getParametersValue)(parameters, "thisUpdate", SingleResponse.defaultValues("thisUpdate"));
if ("nextUpdate" in parameters)
/**
* @type {Date}
* @description nextUpdate
*/
this.nextUpdate = (0, _pvutils.getParametersValue)(parameters, "nextUpdate", SingleResponse.defaultValues("nextUpdate"));
if ("singleExtensions" in parameters)
/**
* @type {Array.<Extension>}
* @description singleExtensions
*/
this.singleExtensions = (0, _pvutils.getParametersValue)(parameters, "singleExtensions", SingleResponse.defaultValues("singleExtensions"));
//endregion
//region If input argument array contains "schema" for this object
if ("schema" in parameters) this.fromSchema(parameters.schema);
//endregion
}
//**********************************************************************************
/**
* Return default values for all class members
* @param {string} memberName String name for a class member
*/
_createClass(SingleResponse, [{
key: "fromSchema",
//**********************************************************************************
/**
* Convert parsed asn1js object into current class
* @param {!Object} schema
*/
value: function fromSchema(schema) {
//region Check the schema is valid
var asn1 = asn1js.compareSchema(schema, schema, SingleResponse.schema({
names: {
certID: {
names: {
blockName: "certID"
}
},
certStatus: "certStatus",
thisUpdate: "thisUpdate",
nextUpdate: "nextUpdate",
singleExtensions: {
names: {
blockName: "singleExtensions"
}
}
}
}));
if (asn1.verified === false) throw new Error("Object's schema was not verified against input data for SingleResponse");
//endregion
//region Get internal properties from parsed schema
this.certID = new _CertID2.default({ schema: asn1.result.certID });
this.certStatus = asn1.result.certStatus;
this.thisUpdate = asn1.result.thisUpdate.toDate();
if ("nextUpdate" in asn1.result) this.nextUpdate = asn1.result.nextUpdate.toDate();
if ("singleExtensions" in asn1.result) this.singleExtensions = Array.from(asn1.result.singleExtensions.valueBlock.value, function (element) {
return new _Extension2.default({ schema: element });
});
//endregion
}
//**********************************************************************************
/**
* Convert current object to asn1js object and set correct values
* @returns {Object} asn1js object
*/
}, {
key: "toSchema",
value: function toSchema() {
//region Create value array for output sequence
var outputArray = [];
outputArray.push(this.certID.toSchema());
outputArray.push(this.certStatus);
outputArray.push(new asn1js.GeneralizedTime({ valueDate: this.thisUpdate }));
if ("nextUpdate" in this) outputArray.push(new asn1js.GeneralizedTime({ valueDate: this.nextUpdate }));
if ("singleExtensions" in this) {
outputArray.push(new asn1js.Sequence({
value: Array.from(this.singleExtensions, function (element) {
return element.toSchema();
})
}));
}
//endregion
//region Construct and return new ASN.1 schema for this object
return new asn1js.Sequence({
value: outputArray
});
//endregion
}
//**********************************************************************************
/**
* Convertion for the class to JSON object
* @returns {Object}
*/
}, {
key: "toJSON",
value: function toJSON() {
var _object = {
certID: this.certID.toJSON(),
certStatus: this.certStatus.toJSON(),
thisUpdate: this.thisUpdate
};
if ("nextUpdate" in this) _object.nextUpdate = this.nextUpdate;
if ("singleExtensions" in this) _object.singleExtensions = Array.from(this.singleExtensions, function (element) {
return element.toJSON();
});
return _object;
}
//**********************************************************************************
}], [{
key: "defaultValues",
value: function defaultValues(memberName) {
switch (memberName) {
case "certID":
return new _CertID2.default();
case "certStatus":
return {};
case "thisUpdate":
case "nextUpdate":
return new Date(0, 0, 0);
case "singleExtensions":
return [];
default:
throw new Error("Invalid member name for SingleResponse class: " + memberName);
}
}
//**********************************************************************************
/**
* Compare values with default values for all class members
* @param {string} memberName String name for a class member
* @param {*} memberValue Value to compare with default value
*/
}, {
key: "compareWithDefault",
value: function compareWithDefault(memberName, memberValue) {
switch (memberName) {
case "certID":
// noinspection OverlyComplexBooleanExpressionJS
return _CertID2.default.compareWithDefault("hashAlgorithm", memberValue.hashAlgorithm) && _CertID2.default.compareWithDefault("issuerNameHash", memberValue.issuerNameHash) && _CertID2.default.compareWithDefault("issuerKeyHash", memberValue.issuerKeyHash) && _CertID2.default.compareWithDefault("serialNumber", memberValue.serialNumber);
case "certStatus":
return Object.keys(memberValue).length === 0;
case "thisUpdate":
case "nextUpdate":
return memberValue === SingleResponse.defaultValues(memberName);
default:
throw new Error("Invalid member name for SingleResponse class: " + memberName);
}
}
//**********************************************************************************
/**
* Return value of asn1js schema for current class
* @param {Object} parameters Input parameters for the schema
* @returns {Object} asn1js schema object
*/
}, {
key: "schema",
value: function schema() {
var parameters = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
//SingleResponse ::= SEQUENCE {
// certID CertID,
// certStatus CertStatus,
// thisUpdate GeneralizedTime,
// nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
// singleExtensions [1] EXPLICIT Extensions OPTIONAL }
//
//CertStatus ::= CHOICE {
// good [0] IMPLICIT NULL,
// revoked [1] IMPLICIT RevokedInfo,
// unknown [2] IMPLICIT UnknownInfo }
//
//RevokedInfo ::= SEQUENCE {
// revocationTime GeneralizedTime,
// revocationReason [0] EXPLICIT CRLReason OPTIONAL }
//
//UnknownInfo ::= NULL
/**
* @type {Object}
* @property {string} [blockName]
* @property {string} [certID]
* @property {string} [certStatus]
* @property {string} [thisUpdate]
* @property {string} [nextUpdate]
* @property {string} [singleExtensions]
*/
var names = (0, _pvutils.getParametersValue)(parameters, "names", {});
return new asn1js.Sequence({
name: names.blockName || "",
value: [_CertID2.default.schema(names.certID || {}), new asn1js.Choice({
value: [new asn1js.Primitive({
name: names.certStatus || "",
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 0 // [0]
},
lenBlockLength: 1 // The length contains one byte 0x00
}), // IMPLICIT NULL (no "value_block")
new asn1js.Constructed({
name: names.certStatus || "",
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 1 // [1]
},
value: [new asn1js.GeneralizedTime(), new asn1js.Constructed({
optional: true,
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 0 // [0]
},
value: [new asn1js.Enumerated()]
})]
}), new asn1js.Primitive({
name: names.certStatus || "",
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 2 // [2]
},
lenBlock: { length: 1 }
}) // IMPLICIT NULL (no "value_block")
]
}), new asn1js.GeneralizedTime({ name: names.thisUpdate || "" }), new asn1js.Constructed({
optional: true,
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 0 // [0]
},
value: [new asn1js.GeneralizedTime({ name: names.nextUpdate || "" })]
}), new asn1js.Constructed({
optional: true,
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 1 // [1]
},
value: [_Extensions2.default.schema(names.singleExtensions || {})]
}) // EXPLICIT SEQUENCE value
]
});
}
}]);
return SingleResponse;
}();
//**************************************************************************************
exports.default = SingleResponse;
//# sourceMappingURL=SingleResponse.js.map