Skip to content

Commit 9d586ac

Browse files
chore(release): 4.3.1 [skip ci]
## [4.3.1](v4.3.0...v4.3.1) (2023-12-26) ### Bug Fixes * move from imports to deps.ts ([304192e](304192e)), closes [#13](#13)
1 parent 304192e commit 9d586ac

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
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.3.0/mod.ts";
18+
import { hash, verify } from "https://deno.land/x/scrypt@v4.3.1/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.3.0/cli.ts hash <password>
39-
deno run https://deno.land/x/scrypt@v4.3.0/cli.ts verify <password> <hash>
38+
deno run https://deno.land/x/scrypt@v4.3.1/cli.ts hash <password>
39+
deno run https://deno.land/x/scrypt@v4.3.1/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.3.0/cli.ts
45+
deno install -n scrypt https://deno.land/x/scrypt@v4.3.1/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.3.0/src/schema.json",
2+
"$schema": "https://x.nest.land/eggs@4.3.1/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.3.0",
7+
"version": "4.3.1",
88
"releaseType": null,
99
"unstable": false,
1010
"unlisted": false,

lib/scrypt_bench.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Just a few simple benchmarks
33
* @todo document the benchmarks better
44
*/
5-
import { scrypt as scryptOld } from "https://deno.land/x/scrypt@v4.3.0/lib/scrypt.ts";
5+
import { scrypt as scryptOld } from "https://deno.land/x/scrypt@v4.3.1/lib/scrypt.ts";
66
import { scrypt } from "./scrypt.ts";
77
const extremeSalt =
88
`IkjpewCbNm4A7cuY1VL9KC3y92blEthtLf9Cet6uEoTxz5cyF660da2zeci42fYwVCVwsKogETMCXupSZZAUh6a80ZnnBTk17B3UTCSVQPpYfL8GktJ2BDokE7ox2hV8OwwUT1hFvCuJqwHZpRvZw1RNCO6HfukPdgMHhq9rWLTXXUNwrIjlmkeydKGFJz2mS1xFcvLQtle4olJVK0SXXXYHAigBfpYxxSC2acvoxuacWcXhzSSRZAMysU2J7zDfXdxnYoqz50rvmvi36g7t2WDSAdzZ44JpxVcc3bYD7xYI3UgfVMPOfeblzwJi455QIurHzDuXEUNS0tZX1kWwZ0XcNSCwGzPs7WSVHxHc0KVUNhwSz16wDYFK4pYeA29ThXgFiFICSLVshiRrCfuzRthW7IZtRa9efcf4nFJsVBk51jpHY0b8CLhARrQU92mlBULwmJKe8DgST3Vn9rva98E9jk4y7NfSb4i9g74OjuFQ8yRO3BHksBZoVtBl4wUppM2hsLt72LZKA0ZsaWW7dG9a1bgWUkBBRG5OwzARenDqQIA2Gp5V4JsXuUUYNDylCelkLUVfS7hB1AZHtnIgwVqTaGDxl7nNZGKpAx6MrOd40laTUhrtZo4prwFZROHPNVJGQk2PQDgwqxX5SWoBTK8cCCzrbGBfHq9r8BwBvSVdeQ7bgjUW2j7NCapHHZ6filzxZaVsLsEITGZNcK0t5DdSnaDLRxyOn21ncKVIyZfOdlvpytvqpQaH5RWu4G50IPkEevue8KenXpGLP0pmEseBf6eX02rlN9arqZ4HJWmD7RbAChs7OJwfKlNIawb0V3G3N0eJeXiRsYOk10GIb91pyZRLSr2AJDtiWCcMuOWZfgLVHIrUVftfh9iXmRk2RAT1sigivbNtdqcF2cVvbTVMUCe7MIPRt4dGqwOQqdReGjPy9p1CNfKfJBIgW0xhYsOGMkcUqSurHxPl4wTOnMBx8vEZQsqJCZomENA1`;

0 commit comments

Comments
 (0)