summaryrefslogtreecommitdiffstats
path: root/third_party/js/PKI.js/src/KeyBag.ts
blob: 462e26486cdd2766d00eccd2f637dcea31d85f65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { PrivateKeyInfo } from "./PrivateKeyInfo";

/**
 * Class from RFC5208
 */
// TODO looks odd
export class KeyBag extends PrivateKeyInfo {

  /**
   * Constructor for Attribute class
   * @param parameters
   */
  constructor(parameters = {}) {
    super(parameters);
  }

}