Skip to main content
Module

x/aes_gcm/mod.ts>aesGcmDecrypt

Modern Web Browser and Deno compatible AES-GCM library written in TypeScript
Latest
variable aesGcmDecrypt
import { aesGcmDecrypt } from "https://deno.land/x/aes_gcm@v1.0.3/mod.ts";

Examples

const plaintext = await aesGcmDecrypt(ciphertext, 'password here')

type

(ciphertext: string, password: string) => unknown