Skip to main content
Module

x/simple_utility/mod.pure.full.ts>pkDecrypt

Simplify processing for Deno.
Go to Latest
function pkDecrypt
import { pkDecrypt } from "https://deno.land/x/simple_utility@v2.0.10/mod.pure.full.ts";

Decrypt binary. Algorithm is AES-GCM with 128 bits key, 128 bits tag and 96 bits IV. IV is read from head of cipher.

Examples

Example 1

const bin = await Deno.readFile("./file");
const k1 = await pkGenerateECDH();
const k2 = await pkGenerateECDH();
const cipher = await pkEncrypt(bin, {
    publicKey: k1.publicKey,
    privateKey: k2.privateKey
});
const decrypt = await pkDecrypt(cipher, {
    publicKey: k2.publicKey,
    privateKey: k1.privateKey
});

Parameters

data: Uint8Array

Returns

Promise<Uint8Array>