SCrypt is a key derivation function (KDF) based on the concept of sequential memory-hard functions mostly used for password hashing.

learn more… | top users | synonyms

1
vote
1answer
73 views

Golang crypto multiple calls have different responses

I'm having a problem with some Go code I've written for a password authentication library. The general idea is to provide 2 functions, Check() and New(), which are both provided a password and a 256 ...
4
votes
1answer
105 views

Can I improve the security of MD5 hashed passwords by salting the existing MD5 hash and hash the result using Scrypt or PBKDF2 HMACSHA256?

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 ...
0
votes
1answer
111 views

Scrypt default security [closed]

I'm currently writing a D library to hash passwords using Scrypt. I would like to know if my current default params would be secure enough for storing user passwords: string genScryptPassword(string ...
0
votes
1answer
181 views

Python-Scrypt doesn't install on Windows 7 64-bit

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 ...
1
vote
1answer
100 views

how can a bruteforce occur on a pbkdf2?

am sorry for this question, but i was asking: when using MD5, we get a hash, so to get the password we hash all the words untill we find the same hash. but in a key derivation algorithme such pbkdf2 ...
0
votes
1answer
182 views

are BCrypt and SCrypt a Key Derivation Functions?

am sorry for this question, but i always find them compared to PBKDF2, so are BCrypt and SCrypt KDFs?
2
votes
1answer
465 views

How to use scrypt to generate hash for password and salt in Python

I would like to use scrypt to create a hash for my users' passwords and salts. I have found two references ( http://aleccolocco.blogspot.com/2011/09/how-to-protect-passwords-with-python.html/ , ...
1
vote
1answer
171 views

Python 3, Scrypt module, Hashes Not Matching

Using: Python 3.2.3, scrypt 0.5.5 module, Ubuntu 12.04 I installed the scrypt module fine. I ran the sample code on the page fine. I also found an expanded version of the sample code, which did fine ...
1
vote
2answers
642 views

Does scrypt use a hash algorithm?

Does the scrypt program use a hashing algorithm behind the scenes? What's the output size of scrypt (I mean the underlying algorithm, is that 4096 bits)?
0
votes
0answers
76 views

Scrypt Python support GAE? [duplicate]

Possible Duplicate: How can I use bcrypt/scrypt on appengine for Python? I have to use Scrypt in My project and deploy it to Google App Engine but i can't find any Scrypt lib in the python ...
11
votes
1answer
1k views

What are optimal scrypt work factors?

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 cost" ...
52
votes
4answers
5k views

Are there any PHP implementations of scrypt?

Where can I find a free scrypt implementation for PHP? Searching Google doesn't provide any useful results because "scrypt" is such an overloaded term.
0
votes
1answer
92 views

scrypt support in Symfony2

Could someone please point out an scrypt bundle for Symfony2 available which could be used? I could not find much information on scrypt (or even bcrypt for Symfony2), and from what I can gather, there ...
6
votes
2answers
1k views

sCrypt implementation in JavaScript?

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 ...
2
votes
1answer
622 views

scrypt C library

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 ...
2
votes
1answer
432 views

django, apache, mod_wsgi and python py-scrypt not working together

I am running a ec2 instance to host some Django websites. The websites are being served by Apache with the use of mod_wsgi Since a few days I am trying to deploy a new webplatform we are developing ...
28
votes
2answers
3k views

.NET implementation of scrypt

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 ...