win-dpapi
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

node-dpapi

Node native module to encrypt/decrypt data. On Windows, it uses DPAPI

API:

function protectData(
    userData: Uint8Array,
    optionalEntropy: Uint8Array,
    scope: "CurrentUser" | "LocalMachine"
): Uint8Array;
 
function unprotectData(
    encryptedData: Uint8Array,
    optionalEntropy: Uint8Array,
    scope: "CurrentUser" | "LocalMachine"
): Uint8Array;

Example:

import * as dpapi from "node-dpapi";
 
const buffer = Buffer.from("Hello world", "utf-8");
 
const encrypted = dpapi.protectData(buffer, null, "CurrentUser");
const decrypted = dpapi.unprotectData(encrypted, null, "CurrentUser");

FAQ:

Q: Does this work on all platforms?

A: Currently it just works on Windows

Publish note

This package originates from bradhugh/node-dpapi, but he did not publish it to npm. I have taken the liberty of publishing this package so it may be used as a dependency.

Readme

Keywords

Package Sidebar

Install

npm i win-dpapi

Weekly Downloads

2,303

Version

1.1.0

License

MIT

Unpacked Size

7.77 kB

Total Files

8

Last publish

Collaborators

  • daguej