File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ This is a wasm-based (using rust-crypto) implementation of scrypt key derivation
1515Import 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
2020const hashResult = hash (" password" );
2121const verifyResult = verify (" password" , hashResult );
@@ -35,14 +35,14 @@ dpx scrypt verify <password> <hash>
3535Alternatively, 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
4242You 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
4848Then, the package is available to run:
Original file line number Diff line number Diff line change 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 ,
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.3.0 /lib/scrypt.ts" ;
5+ import { scrypt as scryptOld } from "https://deno.land/x/scrypt@v4.3.1 /lib/scrypt.ts" ;
66import { scrypt } from "./scrypt.ts" ;
77const extremeSalt =
88 `IkjpewCbNm4A7cuY1VL9KC3y92blEthtLf9Cet6uEoTxz5cyF660da2zeci42fYwVCVwsKogETMCXupSZZAUh6a80ZnnBTk17B3UTCSVQPpYfL8GktJ2BDokE7ox2hV8OwwUT1hFvCuJqwHZpRvZw1RNCO6HfukPdgMHhq9rWLTXXUNwrIjlmkeydKGFJz2mS1xFcvLQtle4olJVK0SXXXYHAigBfpYxxSC2acvoxuacWcXhzSSRZAMysU2J7zDfXdxnYoqz50rvmvi36g7t2WDSAdzZ44JpxVcc3bYD7xYI3UgfVMPOfeblzwJi455QIurHzDuXEUNS0tZX1kWwZ0XcNSCwGzPs7WSVHxHc0KVUNhwSz16wDYFK4pYeA29ThXgFiFICSLVshiRrCfuzRthW7IZtRa9efcf4nFJsVBk51jpHY0b8CLhARrQU92mlBULwmJKe8DgST3Vn9rva98E9jk4y7NfSb4i9g74OjuFQ8yRO3BHksBZoVtBl4wUppM2hsLt72LZKA0ZsaWW7dG9a1bgWUkBBRG5OwzARenDqQIA2Gp5V4JsXuUUYNDylCelkLUVfS7hB1AZHtnIgwVqTaGDxl7nNZGKpAx6MrOd40laTUhrtZo4prwFZROHPNVJGQk2PQDgwqxX5SWoBTK8cCCzrbGBfHq9r8BwBvSVdeQ7bgjUW2j7NCapHHZ6filzxZaVsLsEITGZNcK0t5DdSnaDLRxyOn21ncKVIyZfOdlvpytvqpQaH5RWu4G50IPkEevue8KenXpGLP0pmEseBf6eX02rlN9arqZ4HJWmD7RbAChs7OJwfKlNIawb0V3G3N0eJeXiRsYOk10GIb91pyZRLSr2AJDtiWCcMuOWZfgLVHIrUVftfh9iXmRk2RAT1sigivbNtdqcF2cVvbTVMUCe7MIPRt4dGqwOQqdReGjPy9p1CNfKfJBIgW0xhYsOGMkcUqSurHxPl4wTOnMBx8vEZQsqJCZomENA1` ;
You can’t perform that action at this time.
0 commit comments