aes.d.ts 322 B

123456789
  1. /*! MIT License. Copyright 2015-2022 Richard Moore <me@ricmoo.com>. See LICENSE.txt. */
  2. export declare class AES {
  3. #private;
  4. get key(): Uint8Array;
  5. constructor(key: Uint8Array);
  6. encrypt(plaintext: Uint8Array): Uint8Array;
  7. decrypt(ciphertext: Uint8Array): Uint8Array;
  8. }
  9. //# sourceMappingURL=aes.d.ts.map