File tree Expand file tree Collapse file tree 5 files changed +562
-612
lines changed Expand file tree Collapse file tree 5 files changed +562
-612
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.3.2 " ;
19+ import { hash , verify } from " jsr:@denorg/scrypt@4.3.3 " ;
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.3.2 /cli hash < password>
41- deno run jsr:@denorg/scrypt@4.3.2 /cli verify < password> < hash>
40+ deno run jsr:@denorg/scrypt@4.3.3 /cli hash < password>
41+ deno run jsr:@denorg/scrypt@4.3.3 /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.3.2 /cli
47+ deno install -n scrypt jsr:@denorg/scrypt@4.3.3 /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.3.2 " ,
3+ "version" : " 4.3.3 " ,
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.3.2 /src/schema.json" ,
2+ "$schema" : " https://x.nest.land/eggs@4.3.3 /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.2 " ,
7+ "version" : " 4.3.3 " ,
88 "releaseType" : null ,
99 "unstable" : false ,
1010 "unlisted" : false ,
You can’t perform that action at this time.
0 commit comments