4.4.4 • Published 1 year ago

@denorg/scrypt v4.4.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

🔑 scrypt

This is a wasm-based (using rust-crypto) implementation of scrypt key derivation function that doesn't require any privileges.

Deno CI GitHub Contributors Scrypt Made by Denorg TypeScript semantic-release

⭐ Getting started

Import the hash and/or verify functions and use them:

import { hash, verify } from "jsr:@denorg/scrypt@4.4.4";

const hashResult = hash("password");
const verifyResult = verify("password", hashResult);

CLI with DPX

After installing DPX, you can directly use the CLI using the dpx command:

dpx scrypt hash <password>
dpx scrypt verify <password> <hash>

CLI

Alternatively, you can use it directly from the CLI by using deno run:

deno run jsr:@denorg/scrypt@4.4.4/cli hash <password>
deno run jsr:@denorg/scrypt@4.4.4/cli verify <password> <hash>

You can also install it globally using the following:

deno install -n scrypt jsr:@denorg/scrypt@4.4.4/cli

Then, the package is available to run:

scrypt hash <password>
scrypt verify <password>

👩‍💻 Development

Run tests:

deno test

📄 License

MIT © Denorg

4.4.4

1 year ago

4.4.1

1 year ago

4.4.0

1 year ago

4.4.3

1 year ago

4.4.2

1 year ago

4.3.2

1 year ago

4.3.4

1 year ago

4.3.3

1 year ago

4.3.1

2 years ago

4.3.0

2 years ago

4.2.1

3 years ago

4.1.3

3 years ago

4.1.2

3 years ago

4.2.0

3 years ago

4.1.1

3 years ago

2.1.0

4 years ago

2.0.0

5 years ago

1.0.1

5 years ago