1.0.3 • Published 12 months ago

excel-crypto v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
12 months 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

12 months ago

1.0.3

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago