Skip to main content
Module

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

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

Encrypt binary. Algorithm is AES-GCM with 128 bits key, 128 bits tag and 96 bits IV. IV is prepended to 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>