Skip to content

Commit

Permalink
Readme and pkg.json docs
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Oct 20, 2023
1 parent ebb1955 commit fc4884c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ Auditable & minimal JS implementation of Salsa20, ChaCha and AES.
- 🔻 Tree-shaking-friendly: use only what's necessary, other code won't be included
- 🏎 [Ultra-fast](#speed), hand-optimized for caveats of JS engines
- 🔍 Unique tests ensure correctness: property-based, cross-library and Wycheproof vectors
- 💼 AES: very fast ECB, CBC, CTR, GCM, SIV (nonce misuse-resistant)
- 💼 AES: ECB, CBC, CTR, GCM, SIV (nonce misuse-resistant)
- 💃 Salsa20, ChaCha, XSalsa20, XChaCha, Poly1305, ChaCha8, ChaCha12
- ✍️ FF1 format-preserving encryption
- 🧂 Compatible with NaCl / libsodium secretbox
- 🪶 Just 500 lines / 4KB gzipped for Salsa + ChaCha + Poly build

### This library belongs to _noble_ crypto
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@noble/ciphers",
"version": "0.4.0",
"description": "Auditable & minimal JS implementation of Salsa20, ChaCha & AES",
"description": "Auditable & minimal JS implementation of Salsa20, ChaCha and AES",
"files": [
"esm",
"src",
Expand Down Expand Up @@ -130,7 +130,8 @@
"xchacha20poly1305",
"secretbox",
"rijndael",
"siv"
"siv",
"ff1"
],
"funding": "https://paulmillr.com/funding/"
}

0 comments on commit fc4884c

Please sign in to comment.