mirror of
https://github.com/Ylianst/MeshCommander
synced 2025-12-06 06:03:20 +00:00
21 lines
713 B
JavaScript
21 lines
713 B
JavaScript
import PrivateKeyInfo from "./PrivateKeyInfo.js";
|
|
//**************************************************************************************
|
|
/**
|
|
* Class from RFC5208
|
|
*/
|
|
export default class KeyBag extends PrivateKeyInfo
|
|
{
|
|
//**********************************************************************************
|
|
/**
|
|
* Constructor for Attribute class
|
|
* @param {Object} [parameters={}]
|
|
* @param {Object} [parameters.schema] asn1js parsed value to initialize the class from
|
|
*/
|
|
constructor(parameters = {})
|
|
{
|
|
super(parameters);
|
|
}
|
|
//**********************************************************************************
|
|
}
|
|
//**************************************************************************************
|