src/SecretBag.js
import * as asn1js from "asn1js";
import { getParametersValue, clearProps } from "pvutils";
//**************************************************************************************
/**
* Class from RFC7292
*/
export default class SecretBag
{
//**********************************************************************************
/**
* Constructor for SecretBag class
* @param {Object} [parameters={}]
* @property {Object} [schema] asn1js parsed value
*/
constructor(parameters = {})
{
//region Internal properties of the object
/**
* @type {string}
* @description secretTypeId
*/
this.secretTypeId = getParametersValue(parameters, "secretTypeId", SecretBag.defaultValues("secretTypeId"));
/**
* @type {*}
* @description secretValue
*/
this.secretValue = getParametersValue(parameters, "secretValue", SecretBag.defaultValues("secretValue"));
//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
*/
static defaultValues(memberName)
{
switch(memberName)
{
case "secretTypeId":
return "";
case "secretValue":
return (new asn1js.Any());
default:
throw new Error(`Invalid member name for SecretBag 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
*/
static compareWithDefault(memberName, memberValue)
{
switch(memberName)
{
case "secretTypeId":
return (memberValue === "");
case "secretValue":
return (memberValue instanceof asn1js.Any);
default:
throw new Error(`Invalid member name for SecretBag class: ${memberName}`);
}
}
//**********************************************************************************
/**
* Return value of asn1js schema for current class
* @param {Object} parameters Input parameters for the schema
* @returns {Object} asn1js schema object
*/
static schema(parameters = {})
{
//SecretBag ::= SEQUENCE {
// secretTypeId BAG-TYPE.&id ({SecretTypes}),
// secretValue [0] EXPLICIT BAG-TYPE.&Type ({SecretTypes}{@secretTypeId})
//}
/**
* @type {Object}
* @property {string} [blockName]
* @property {string} [id]
* @property {string} [value]
*/
const names = getParametersValue(parameters, "names", {});
return (new asn1js.Sequence({
name: (names.blockName || ""),
value: [
new asn1js.ObjectIdentifier({ name: (names.id || "id") }),
new asn1js.Constructed({
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 0 // [0]
},
value: [new asn1js.Any({ name: (names.value || "value") })] // EXPLICIT ANY value
})
]
}));
}
//**********************************************************************************
/**
* Convert parsed asn1js object into current class
* @param {!Object} schema
*/
fromSchema(schema)
{
//region Clear input data first
clearProps(schema, [
"secretTypeId",
"secretValue"
]);
//endregion
//region Check the schema is valid
const asn1 = asn1js.compareSchema(schema,
schema,
SecretBag.schema({
names: {
id: "secretTypeId",
value: "secretValue"
}
})
);
if(asn1.verified === false)
throw new Error("Object's schema was not verified against input data for SecretBag");
//endregion
//region Get internal properties from parsed schema
this.secretTypeId = asn1.result.secretTypeId.valueBlock.toString();
this.secretValue = asn1.result.secretValue;
//endregion
}
//**********************************************************************************
/**
* Convert current object to asn1js object and set correct values
* @returns {Object} asn1js object
*/
toSchema()
{
//region Construct and return new ASN.1 schema for this object
return (new asn1js.Sequence({
value: [
new asn1js.ObjectIdentifier({ value: this.secretTypeId }),
new asn1js.Constructed({
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 0 // [0]
},
value: [this.secretValue.toSchema()]
})
]
}));
//endregion
}
//**********************************************************************************
/**
* Convertion for the class to JSON object
* @returns {Object}
*/
toJSON()
{
return {
secretTypeId: this.secretTypeId,
secretValue: this.secretValue.toJSON()
};
}
//**********************************************************************************
}
//**************************************************************************************