Skip to content

Commit ea98496

Browse files
committed
fixed typo
1 parent 1175453 commit ea98496

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Modern, cross-platform encryption for both **files** *and* **text**.
1313
Currently there are 2 encryption schemes supported:
1414

1515
* **Scheme 0** (default): **AES-GCM 256** (native via Crypto API) and **Argon2id** (single thread parallelism setup using `argon2` or `argon2-browser`)
16-
* **Scheme 1**: **XChaCha20Poly1305** (via JavaScript engine `@noble/cipehrs`) and and **Argon2id** (multi thread parallelism setup using `argon2` or `argon2-browser`)
16+
* **Scheme 1**: **XChaCha20Poly1305** (via JavaScript engine `@noble/ciphers`) and and **Argon2id** (multi thread parallelism setup using `argon2` or `argon2-browser`)
1717

1818
The library can support up to 8 schemes via a header info byte (3 bit allocated).
1919

@@ -72,7 +72,7 @@ await createReadStream("movie.enc")
7272
<script type="module">
7373
import { createCryptit } from "@mqxym/cryptit/browser";
7474
75-
// IMPORTANT: host argon2.wasm at /dist/argon2.wasm (relative to final HTML)
75+
// IMPORTANT: host argon2.wasm at /argon2.wasm (relative to final HTML)
7676
7777
const crypt = createCryptit({ saltStrength: "high", verbose: 2 });
7878

0 commit comments

Comments
 (0)