1.0.3 • Published 1 year ago

excel-crypto v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

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)
  • 1.0.0

    • ✨ Encrypt XLSX

License

Write your license info here (ex. This project is licensed under the MIT License)

1.0.2

1 year ago

1.0.3

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago