diff --git a/README.md b/README.md index 5f5e484..a2b5db7 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ function that doesn't require any privileges. Import the `hash` and/or `verify` functions and use them: ```ts -import { hash, verify } from "jsr:@denorg/scrypt@4.3.3"; +import { hash, verify } from "jsr:@denorg/scrypt@4.3.4"; const hashResult = hash("password"); const verifyResult = verify("password", hashResult); @@ -37,14 +37,14 @@ dpx scrypt verify Alternatively, you can use it directly from the CLI by using `deno run`: ```bash -deno run jsr:@denorg/scrypt@4.3.3/cli hash -deno run jsr:@denorg/scrypt@4.3.3/cli verify +deno run jsr:@denorg/scrypt@4.3.4/cli hash +deno run jsr:@denorg/scrypt@4.3.4/cli verify ``` You can also install it globally using the following: ```bash -deno install -n scrypt jsr:@denorg/scrypt@4.3.3/cli +deno install -n scrypt jsr:@denorg/scrypt@4.3.4/cli ``` Then, the package is available to run: diff --git a/deno.jsonc b/deno.jsonc index fcd171a..f82040c 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,6 +1,6 @@ { "name": "@denorg/scrypt", - "version": "4.3.3", + "version": "4.3.4", "exports": { ".": "./mod.ts", "./cli": "./cli.ts", diff --git a/egg.json b/egg.json index 83cf89b..6eb0ea4 100644 --- a/egg.json +++ b/egg.json @@ -1,10 +1,10 @@ { - "$schema": "https://x.nest.land/eggs@4.3.3/src/schema.json", + "$schema": "https://x.nest.land/eggs@4.3.4/src/schema.json", "name": "scrypt", "entry": "./mod.ts", "description": "This is a wasm-based (using rust-crypto) implementation of scrypt key derivation function that doesn't require any privileges.", "homepage": "https://github.com/denorg/scrypt", - "version": "4.3.3", + "version": "4.3.4", "releaseType": null, "unstable": false, "unlisted": false, diff --git a/lib/_wasm/scrypt_wasm.generated.js b/lib/_wasm/scrypt_wasm.generated.js index ab4f00c..4125e1a 100644 --- a/lib/_wasm/scrypt_wasm.generated.js +++ b/lib/_wasm/scrypt_wasm.generated.js @@ -4,7 +4,7 @@ // deno-fmt-ignore-file /// -// source-hash: 5943c2f3751ce454b872d9c0b5c28bd558a66e08 +// source-hash: 736c2347bebf9a9810ac6d948ed5f38fcb482f85 let wasm; let cachedUint8Memory0 = null; diff --git a/lib/scrypt_bench.ts b/lib/scrypt_bench.ts index f513b79..630524b 100644 --- a/lib/scrypt_bench.ts +++ b/lib/scrypt_bench.ts @@ -2,7 +2,7 @@ * Just a few simple benchmarks * @todo document the benchmarks better */ -import { scrypt as scryptOld } from "https://deno.land/x/scrypt@v4.3.3/lib/scrypt.ts"; +import { scrypt as scryptOld } from "https://deno.land/x/scrypt@v4.3.4/lib/scrypt.ts"; import { scrypt } from "./scrypt.ts"; const extremeSalt = `IkjpewCbNm4A7cuY1VL9KC3y92blEthtLf9Cet6uEoTxz5cyF660da2zeci42fYwVCVwsKogETMCXupSZZAUh6a80ZnnBTk17B3UTCSVQPpYfL8GktJ2BDokE7ox2hV8OwwUT1hFvCuJqwHZpRvZw1RNCO6HfukPdgMHhq9rWLTXXUNwrIjlmkeydKGFJz2mS1xFcvLQtle4olJVK0SXXXYHAigBfpYxxSC2acvoxuacWcXhzSSRZAMysU2J7zDfXdxnYoqz50rvmvi36g7t2WDSAdzZ44JpxVcc3bYD7xYI3UgfVMPOfeblzwJi455QIurHzDuXEUNS0tZX1kWwZ0XcNSCwGzPs7WSVHxHc0KVUNhwSz16wDYFK4pYeA29ThXgFiFICSLVshiRrCfuzRthW7IZtRa9efcf4nFJsVBk51jpHY0b8CLhARrQU92mlBULwmJKe8DgST3Vn9rva98E9jk4y7NfSb4i9g74OjuFQ8yRO3BHksBZoVtBl4wUppM2hsLt72LZKA0ZsaWW7dG9a1bgWUkBBRG5OwzARenDqQIA2Gp5V4JsXuUUYNDylCelkLUVfS7hB1AZHtnIgwVqTaGDxl7nNZGKpAx6MrOd40laTUhrtZo4prwFZROHPNVJGQk2PQDgwqxX5SWoBTK8cCCzrbGBfHq9r8BwBvSVdeQ7bgjUW2j7NCapHHZ6filzxZaVsLsEITGZNcK0t5DdSnaDLRxyOn21ncKVIyZfOdlvpytvqpQaH5RWu4G50IPkEevue8KenXpGLP0pmEseBf6eX02rlN9arqZ4HJWmD7RbAChs7OJwfKlNIawb0V3G3N0eJeXiRsYOk10GIb91pyZRLSr2AJDtiWCcMuOWZfgLVHIrUVftfh9iXmRk2RAT1sigivbNtdqcF2cVvbTVMUCe7MIPRt4dGqwOQqdReGjPy9p1CNfKfJBIgW0xhYsOGMkcUqSurHxPl4wTOnMBx8vEZQsqJCZomENA1`; diff --git a/mod.ts b/mod.ts index 5beebd1..53725f1 100644 --- a/mod.ts +++ b/mod.ts @@ -1,7 +1,7 @@ /** * @module scrypt * @author oplik0 - * @version 4.3.3 + * @version 4.3.4 */ import { timingSafeEqual } from "./deps.ts";