mirror of
https://github.com/Ylianst/MeshCommander
synced 2025-12-06 06:03:20 +00:00
248 lines
7.5 KiB
JavaScript
248 lines
7.5 KiB
JavaScript
import * as asn1js from "asn1js";
|
|
import { getParametersValue, clearProps } from "pvutils";
|
|
import AlgorithmIdentifier from "./AlgorithmIdentifier.js";
|
|
//**************************************************************************************
|
|
/**
|
|
* Class from RFC5652
|
|
*/
|
|
export default class PasswordRecipientinfo
|
|
{
|
|
//**********************************************************************************
|
|
/**
|
|
* Constructor for PasswordRecipientinfo class
|
|
* @param {Object} [parameters={}]
|
|
* @param {Object} [parameters.schema] asn1js parsed value to initialize the class from
|
|
*/
|
|
constructor(parameters = {})
|
|
{
|
|
//region Internal properties of the object
|
|
/**
|
|
* @type {number}
|
|
* @desc version
|
|
*/
|
|
this.version = getParametersValue(parameters, "version", PasswordRecipientinfo.defaultValues("version"));
|
|
|
|
if("keyDerivationAlgorithm" in parameters)
|
|
/**
|
|
* @type {AlgorithmIdentifier}
|
|
* @desc keyDerivationAlgorithm
|
|
*/
|
|
this.keyDerivationAlgorithm = getParametersValue(parameters, "keyDerivationAlgorithm", PasswordRecipientinfo.defaultValues("keyDerivationAlgorithm"));
|
|
|
|
/**
|
|
* @type {AlgorithmIdentifier}
|
|
* @desc keyEncryptionAlgorithm
|
|
*/
|
|
this.keyEncryptionAlgorithm = getParametersValue(parameters, "keyEncryptionAlgorithm", PasswordRecipientinfo.defaultValues("keyEncryptionAlgorithm"));
|
|
/**
|
|
* @type {OctetString}
|
|
* @desc encryptedKey
|
|
*/
|
|
this.encryptedKey = getParametersValue(parameters, "encryptedKey", PasswordRecipientinfo.defaultValues("encryptedKey"));
|
|
/**
|
|
* @type {ArrayBuffer}
|
|
* @desc password Password to derive key from
|
|
*/
|
|
this.password = getParametersValue(parameters, "password", PasswordRecipientinfo.defaultValues("password"));
|
|
//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 "version":
|
|
return (-1);
|
|
case "keyDerivationAlgorithm":
|
|
return new AlgorithmIdentifier();
|
|
case "keyEncryptionAlgorithm":
|
|
return new AlgorithmIdentifier();
|
|
case "encryptedKey":
|
|
return new asn1js.OctetString();
|
|
case "password":
|
|
return new ArrayBuffer(0);
|
|
default:
|
|
throw new Error(`Invalid member name for PasswordRecipientinfo 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 "version":
|
|
return (memberValue === (-1));
|
|
case "keyDerivationAlgorithm":
|
|
case "keyEncryptionAlgorithm":
|
|
return ((memberValue.algorithmId === "") && (("algorithmParams" in memberValue) === false));
|
|
case "encryptedKey":
|
|
return (memberValue.isEqual(PasswordRecipientinfo.defaultValues("encryptedKey")));
|
|
case "password":
|
|
return (memberValue.byteLength === 0);
|
|
default:
|
|
throw new Error(`Invalid member name for PasswordRecipientinfo class: ${memberName}`);
|
|
}
|
|
}
|
|
//**********************************************************************************
|
|
/**
|
|
* Return value of pre-defined ASN.1 schema for current class
|
|
*
|
|
* ASN.1 schema:
|
|
* ```asn1
|
|
* PasswordRecipientInfo ::= SEQUENCE {
|
|
* version CMSVersion, -- Always set to 0
|
|
* keyDerivationAlgorithm [0] KeyDerivationAlgorithmIdentifier OPTIONAL,
|
|
* keyEncryptionAlgorithm KeyEncryptionAlgorithmIdentifier,
|
|
* encryptedKey EncryptedKey }
|
|
* ```
|
|
*
|
|
* @param {Object} parameters Input parameters for the schema
|
|
* @returns {Object} asn1js schema object
|
|
*/
|
|
static schema(parameters = {})
|
|
{
|
|
/**
|
|
* @type {Object}
|
|
* @property {string} [blockName]
|
|
* @property {string} [keyDerivationAlgorithm]
|
|
* @property {string} [keyEncryptionAlgorithm]
|
|
* @property {string} [encryptedKey]
|
|
*/
|
|
const names = getParametersValue(parameters, "names", {});
|
|
|
|
return (new asn1js.Sequence({
|
|
name: (names.blockName || ""),
|
|
value: [
|
|
new asn1js.Integer({ name: (names.version || "") }),
|
|
new asn1js.Constructed({
|
|
name: (names.keyDerivationAlgorithm || ""),
|
|
optional: true,
|
|
idBlock: {
|
|
tagClass: 3, // CONTEXT-SPECIFIC
|
|
tagNumber: 0 // [0]
|
|
},
|
|
value: AlgorithmIdentifier.schema().valueBlock.value
|
|
}),
|
|
AlgorithmIdentifier.schema(names.keyEncryptionAlgorithm || {}),
|
|
new asn1js.OctetString({ name: (names.encryptedKey || "") })
|
|
]
|
|
}));
|
|
}
|
|
//**********************************************************************************
|
|
/**
|
|
* Convert parsed asn1js object into current class
|
|
* @param {!Object} schema
|
|
*/
|
|
fromSchema(schema)
|
|
{
|
|
//region Clear input data first
|
|
clearProps(schema, [
|
|
"version",
|
|
"keyDerivationAlgorithm",
|
|
"keyEncryptionAlgorithm",
|
|
"encryptedKey"
|
|
]);
|
|
//endregion
|
|
|
|
//region Check the schema is valid
|
|
const asn1 = asn1js.compareSchema(schema,
|
|
schema,
|
|
PasswordRecipientinfo.schema({
|
|
names: {
|
|
version: "version",
|
|
keyDerivationAlgorithm: "keyDerivationAlgorithm",
|
|
keyEncryptionAlgorithm: {
|
|
names: {
|
|
blockName: "keyEncryptionAlgorithm"
|
|
}
|
|
},
|
|
encryptedKey: "encryptedKey"
|
|
}
|
|
})
|
|
);
|
|
|
|
if(asn1.verified === false)
|
|
throw new Error("Object's schema was not verified against input data for PasswordRecipientinfo");
|
|
//endregion
|
|
|
|
//region Get internal properties from parsed schema
|
|
this.version = asn1.result.version.valueBlock.valueDec;
|
|
|
|
if("keyDerivationAlgorithm" in asn1.result)
|
|
{
|
|
this.keyDerivationAlgorithm = new AlgorithmIdentifier({
|
|
schema: new asn1js.Sequence({
|
|
value: asn1.result.keyDerivationAlgorithm.valueBlock.value
|
|
})
|
|
});
|
|
}
|
|
|
|
this.keyEncryptionAlgorithm = new AlgorithmIdentifier({ schema: asn1.result.keyEncryptionAlgorithm });
|
|
this.encryptedKey = asn1.result.encryptedKey;
|
|
//endregion
|
|
}
|
|
//**********************************************************************************
|
|
/**
|
|
* Convert current object to asn1js object and set correct values
|
|
* @returns {Object} asn1js object
|
|
*/
|
|
toSchema()
|
|
{
|
|
//region Create output array for sequence
|
|
const outputArray = [];
|
|
|
|
outputArray.push(new asn1js.Integer({ value: this.version }));
|
|
|
|
if("keyDerivationAlgorithm" in this)
|
|
{
|
|
outputArray.push(new asn1js.Constructed({
|
|
idBlock: {
|
|
tagClass: 3, // CONTEXT-SPECIFIC
|
|
tagNumber: 0 // [0]
|
|
},
|
|
value: this.keyDerivationAlgorithm.toSchema().valueBlock.value
|
|
}));
|
|
}
|
|
|
|
outputArray.push(this.keyEncryptionAlgorithm.toSchema());
|
|
outputArray.push(this.encryptedKey);
|
|
//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}
|
|
*/
|
|
toJSON()
|
|
{
|
|
return {
|
|
version: this.version,
|
|
keyDerivationAlgorithm: this.keyDerivationAlgorithm.toJSON(),
|
|
keyEncryptionAlgorithm: this.keyEncryptionAlgorithm.toJSON(),
|
|
encryptedKey: this.encryptedKey.toJSON()
|
|
};
|
|
}
|
|
//**********************************************************************************
|
|
}
|
|
//**************************************************************************************
|