Skip to content

Commit 88b0558

Browse files
chore(release): 4.3.0 [skip ci]
# [4.3.0](v4.2.1...v4.3.0) (2023-12-26) ### Features * move to new std using import map and deno.lock ([39e095f](39e095f)) * optimize wasm size using via enabling LTO and using TALC allocator ([e74b761](e74b761)) * use current OWASP params and timingSafeEqual ([3690299](3690299)) * write a simple crypto.subtle based hmac implementation to stop relying on old std ([d71d825](d71d825))
1 parent d71d825 commit 88b0558

File tree

4 files changed

+561
-564
lines changed

4 files changed

+561
-564
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This is a wasm-based (using rust-crypto) implementation of scrypt key derivation
1515
Import the `hash` and/or `verify` functions and use them:
1616

1717
```ts
18-
import { hash, verify } from "https://deno.land/x/scrypt@v4.2.1/mod.ts";
18+
import { hash, verify } from "https://deno.land/x/scrypt@v4.3.0/mod.ts";
1919

2020
const hashResult = hash("password");
2121
const verifyResult = verify("password", hashResult);
@@ -35,14 +35,14 @@ dpx scrypt verify <password> <hash>
3535
Alternatively, you can use it directly from the CLI by using `deno run`:
3636

3737
```bash
38-
deno run https://deno.land/x/scrypt@v4.2.1/cli.ts hash <password>
39-
deno run https://deno.land/x/scrypt@v4.2.1/cli.ts verify <password> <hash>
38+
deno run https://deno.land/x/scrypt@v4.3.0/cli.ts hash <password>
39+
deno run https://deno.land/x/scrypt@v4.3.0/cli.ts verify <password> <hash>
4040
```
4141

4242
You can also install it globally using the following:
4343

4444
```bash
45-
deno install -n scrypt https://deno.land/x/scrypt@v4.2.1/cli.ts
45+
deno install -n scrypt https://deno.land/x/scrypt@v4.3.0/cli.ts
4646
```
4747

4848
Then, the package is available to run:

egg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"$schema": "https://x.nest.land/eggs@4.2.1/src/schema.json",
2+
"$schema": "https://x.nest.land/eggs@4.3.0/src/schema.json",
33
"name": "scrypt",
44
"entry": "./mod.ts",
55
"description": "This is a wasm-based (using rust-crypto) implementation of scrypt key derivation function that doesn't require any privileges.",
66
"homepage": "https://github.com/denorg/scrypt",
7-
"version": "4.2.1",
7+
"version": "4.3.0",
88
"releaseType": null,
99
"unstable": false,
1010
"unlisted": false,

0 commit comments

Comments
 (0)