scrypt Questions

3

What's the best way to implement password hashing and verification in node.js using only the built-in crypto module. Basically what is needed: function passwordHash(password) {} // => passwordHa...
Milfordmilhaud asked 15/7, 2020 at 6:40

4

I want to run a blockchain application, but I got this error. npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! [email protected] install: node-gyp rebuild npm ERR! Exit status 1 npm ...
Kaleykaleyard asked 26/10, 2019 at 15:47

2

Solved

I have created nodejs project when i am running command npm install it is failing with some error The same project is working on ubuntu system but when i clone this code on mac system and try to r...
Gordie asked 12/1, 2019 at 16:17

3

Solved

I'm currently implementing password hashing using scrypt. I have already found a nice scrypt implementation on GitHub. To my surprise I have also discovered a scrypt implementation in the Bouncy Ca...
Terrance asked 6/3, 2014 at 14:6

1

I am unable to run my Node express server because there is failure with downloading and installing script. I am on Mac OS 10.4.14. I want to be able to download the latest scrypt library. I have t...
Labial asked 14/5, 2019 at 21:20

3

I'm trying to implement the warpwallet code in C#. I'm using cryptsharp for its scrypt and PBKDF2 implementations. However, I seem to be getting different results than the real website. Here is my...
Polychromy asked 14/9, 2017 at 8:51

2

Solved

I'd like to store an scrypt-hashed password in a database. What is the maximum length I can expect?
Ate asked 1/6, 2014 at 23:31

2

Solved

I have a database of legacy passwords that were salted and hashed using MD5. I would like to update the system so that the data is more secure. The first option is to transition the users to a new...
Haemostat asked 2/4, 2013 at 21:8

2

Solved

Specifically this. I know most bcrypt implementations are around 50 characters for, but I'm pretty certain that's not the case with scrypt.
Pronation asked 5/8, 2014 at 6:43

7

Solved

Someone asked about a JavaScript implementation of bCrypt a while back and appears to have written their own code to handle the implementation. Does anyone have an implementation of sCrypt in...
Fourpenny asked 30/9, 2011 at 23:54

2

Solved

I have searched all over Google and I can't find a code sample of Scrypt usage (for hashing a password) using the Cryptsharp library. Can you please provide a sample for hashing the password?
Exemplum asked 18/11, 2013 at 8:15

3

Solved

I'm using a Java scrypt library for password storage. It calls for an N, r and p value when I encrypt things, which its documentation refers to as "CPU cost", "memory cost" and "parallelization cos...
Knout asked 20/6, 2012 at 18:57

3

Solved

I've read about scrypt and some of its advantages over the bcrypt hashing algorithm in certain circumstances. Anyhow, it seems scrypt isn't as widely used yet. Has anyone seen so far a .NET imple...
Bjork asked 30/1, 2011 at 22:25

2

Solved

I would like to use scrypt to create a hash for my users' passwords and salts. I have found two references, but there are things I don't understand about them. They use the scrypt encrypt and decr...
Fabrienne asked 30/11, 2012 at 23:6

1

Solved

It seems that Scrypt doesn't install on my machine. I've installed the version for Windows here. I used Visual Studio free edition, installed OpenSSL 32-bit, and compiled BCrypt with success; but S...
Liva asked 30/12, 2012 at 21:27

1

Solved

I'm currently developing a C app in which I'll need to hash user's passwords. I know scrypt is currently one of the best methods to "hash" passwords (memory-bound, slow), but I can't seem to find a...
Zildjian asked 22/6, 2011 at 7:52
1

© 2022 - 2024 — McMap. All rights reserved.