windcrypt
v1.4.3
Published
WinCrypt a powerfull alternative to 'dpapi', 'node-dpapi', 'windpapi' or '@primno/dpapi' it use wincrypt.h librairy!
Downloads
43
Readme
WindCrypt
⚠️ Windows Only
WindCrypt is built in C++ and uses the native windows api's wincrypt
Example
const windcrypt = require("windcrypt");
const text = Buffer.from("test");
const pass = Buffer.from("123");
const encrypted = windcrypt.protectData(text, pass);
console.log(windcrypt.unprotectData(encrypted, pass).toString()); // Prints "test"
Types
export const enum Flags {
CurrentUser = "CurrentUser",
LocalMachine = "LocalMachine"
}
export function protectData(
data: Buffer,
optionalEntropy?: Buffer | undefined | null,
flags?: Flags | undefined | null
): Buffer;
export function unprotectData(
data: Buffer,
optionalEntropy?: Buffer | undefined | null,
flags?: Flags | undefined | null
): Buffer;
Usage
Without password
windcrypt.protectData(Buffer.from("test"));
With custom flag (only CRYPTPROTECT_LOCAL_MACHINE
supported)
INFO: Default flag is
0
("CurrentUser")
windcrypt.protectData(Buffer.from("test"), null, windcrypt.Flags.LocalMachine);
// or
windcrypt.protectData(Buffer.from("test"), null, "LocalMachine");
The usage for
unprotectData
method is the same asprotectData
© (C) Angelo II Apache-2.0 license, all right reserved