kanru / rage-wasm

WebAssembly wrapper of the rage encryption library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rage-wasm: WebAssembly wrapper of rage

rage is a simple, modern, and secure file encryption tool, using the age format. It features small explicit keys, no config options, and UNIX-style composability.

The format specification is at age-encryption.org/v1. To discuss the spec or other age related topics, please email the mailing list at age-dev@googlegroups.com. age was designed by @Benjojo12 and @FiloSottile.

This package is a WebAssembly wrapper of the Rust rage package, providing basic encryption and descryption operations.

🚴 Usage

πŸ‘ Use NPM or Yarn to install the package

npm install @kanru/rage-wasm

The package exports a single module with 5 async methods. Upon first use an inlined webassembly module will be loaded asynchronously.

  • keygen - generate x25519 key pairs
  • encrypt_with_x25519
  • decrypt_with_x25519
  • encrypt_with_user_passphrase
  • decrypt_with_user_passphrase

Examples

Some examples with parcel or shadow-cljs are available under the examples/ directory.

Contribute

πŸ› οΈ Build

npm install
npm run build

πŸ”¬ Test in Headless Browsers

npm test

🎁 Publish to NPM

npm publish

About

WebAssembly wrapper of the rage encryption library

License:Apache License 2.0


Languages

Language:Rust 61.6%Language:JavaScript 38.4%