tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

KeyBag.ts (282B)


      1 import { PrivateKeyInfo } from "./PrivateKeyInfo";
      2 
      3 /**
      4 * Class from RFC5208
      5 */
      6 // TODO looks odd
      7 export class KeyBag extends PrivateKeyInfo {
      8 
      9  /**
     10   * Constructor for Attribute class
     11   * @param parameters
     12   */
     13  constructor(parameters = {}) {
     14    super(parameters);
     15  }
     16 
     17 }