Skip to content

Commit

Permalink
Release 0.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Jun 28, 2023
1 parent 471cd46 commit 8e96be2
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# noble-ciphers

Auditable & minimal JS implementation of AES, Salsa20 and ChaCha20 ciphers.
Auditable & minimal JS implementation of AES SIV, Salsa20 and ChaCha20.

- 🔒 Auditable
- 🔻 Tree-shaking-friendly: use only what's necessary, other code won't be included
Expand Down
126 changes: 126 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "@noble/ciphers",
"version": "0.1.0",
"description": "Auditable & minimal JS implementation of AES SIV, Salsa20 and ChaCha20 ciphers",
"description": "Auditable & minimal JS implementation of AES SIV, Salsa20 and ChaCha20",
"files": [
"esm",
"src",
"webcrypto",
"*.js",
"*.js.map",
"*.d.ts",
Expand All @@ -29,7 +30,7 @@
},
"license": "MIT",
"devDependencies": {
"@scure/base": "^1.1.1",
"@scure/base": "1.1.1",
"fast-check": "3.0.0",
"micro-bmark": "0.3.1",
"micro-should": "0.4.0",
Expand Down Expand Up @@ -57,6 +58,11 @@
"import": "./esm/_slow.js",
"default": "./_slow.js"
},
"./_poly1305": {
"types": "./_poly1305.d.ts",
"import": "./esm/_poly1305.js",
"default": "./_poly1305.js"
},
"./chacha": {
"types": "./chacha.d.ts",
"import": "./esm/chacha.js",
Expand Down

0 comments on commit 8e96be2

Please sign in to comment.