Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/god_crypto/src/aes/aes_base.ts>AESBase

Pure Javascript/Typescript Crypto Implementation for Deno. AES, RSA, HMAC, and TOTP
Very Popular
Go to Latest
class AESBase
Abstract
import { AESBase } from "https://deno.land/x/god_crypto@v1.4.10/src/aes/aes_base.ts";

Methods

abstract
decrypt(m: Uint8Array): Promise<Uint8Array>
abstract
encrypt(m: Uint8Array): Promise<Uint8Array>