File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ function that doesn't require any privileges.
1616Import the ` hash ` and/or ` verify ` functions and use them:
1717
1818``` ts
19- import { hash , verify } from " jsr:@denorg/scrypt@4.4.0 " ;
19+ import { hash , verify } from " jsr:@denorg/scrypt@4.4.1 " ;
2020
2121const hashResult = hash (" password" );
2222const verifyResult = verify (" password" , hashResult );
@@ -37,14 +37,14 @@ dpx scrypt verify <password> <hash>
3737Alternatively, you can use it directly from the CLI by using ` deno run ` :
3838
3939``` bash
40- deno run jsr:@denorg/scrypt@4.4.0 /cli hash < password>
41- deno run jsr:@denorg/scrypt@4.4.0 /cli verify < password> < hash>
40+ deno run jsr:@denorg/scrypt@4.4.1 /cli hash < password>
41+ deno run jsr:@denorg/scrypt@4.4.1 /cli verify < password> < hash>
4242```
4343
4444You can also install it globally using the following:
4545
4646``` bash
47- deno install -n scrypt jsr:@denorg/scrypt@4.4.0 /cli
47+ deno install -n scrypt jsr:@denorg/scrypt@4.4.1 /cli
4848```
4949
5050Then, the package is available to run:
Original file line number Diff line number Diff line change 11{
22 "name" : " @denorg/scrypt" ,
3- "version" : " 4.4.0 " ,
3+ "version" : " 4.4.1 " ,
44 "exports" : {
55 "." : " ./mod.ts" ,
66 "./cli" : " ./cli.ts" ,
Original file line number Diff line number Diff line change 11{
2- "$schema" : " https://x.nest.land/eggs@4.4.0 /src/schema.json" ,
2+ "$schema" : " https://x.nest.land/eggs@4.4.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.4.0 " ,
7+ "version" : " 4.4.1 " ,
88 "releaseType" : null ,
99 "unstable" : false ,
1010 "unlisted" : false ,
Original file line number Diff line number Diff line change 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.4.0 /lib/scrypt.ts" ;
5+ import { scrypt as scryptOld } from "https://deno.land/x/scrypt@v4.4.1 /lib/scrypt.ts" ;
66import { scrypt } from "./scrypt.ts" ;
77import { scrypt as scryptNodeRaw } from "node:crypto" ;
8- import { scrypt as scryptoRaw } from "https://deno.land/x/scrypto@v4.4.0 /main.ts" ;
8+ import { scrypt as scryptoRaw } from "https://deno.land/x/scrypto@v4.4.1 /main.ts" ;
99import { scrypt as scryptWasmRaw } from "npm:hash-wasm"
1010
1111function scryptNode (
Original file line number Diff line number Diff line change 11/**
22 * @module scrypt
33 * @author oplik0
4- * @version 4.4.0
4+ * @version 4.4.1
55 */
66
77import { timingSafeEqual } from "./deps.ts" ;
You can’t perform that action at this time.
0 commit comments