mirror of
https://github.com/tlsnotary/PageSigner.git
synced 2026-01-08 22:27:57 -05:00
21 lines
733 B
JavaScript
21 lines
733 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);
|
|
}
|
|
//**********************************************************************************
|
|
}
|
|
//**************************************************************************************
|