excel-crypto
v1.0.3
Published
Encrypt the xlsx file that was delivered in buffer form. (https://ecma-international.org/publications-and-standards/standards/ecma-376)
Downloads
2
Readme
excel-crypto
xlsx encrypt/decrypt based on ECMA376
Installation
# npm
npm install excel-crypto
# yarn
yarn add excel-crypto
# pnpm
pnpm install excel-crypto
Usage
# example
import { XLSX_Cryptor } from "excel-crypto";
import { readFileSync } from "fs";
const XlsxCryptor = new XLSX_Cryptor();
// make Buffer
const fileBuffer = readFileSync("./your_path");
// get encrypt Buffer
const encryptFile = XlsxCryptor.encrypt({
data: fileBuffer,
password: "your_password",
});
Authors
- _jujoycode - Project initial and development
Version History
1.0.1
- 🔨 build with esBuild (
Bundling
,Minify
,Tree Shaking
)
- 🔨 build with esBuild (
1.0.0
- ✨ Encrypt XLSX
License
Write your license info here (ex. This project is licensed under the [MIT] License)