PBKDF2 (Password-Based Key Derivation Function 2) is a key derivation function that is part of RSA Laboratories' Public-Key Cryptography Standards (PKCS) series.
1
vote
0answers
65 views
Add salt to pycrypto KDF - useful? [closed]
I have noted some sources indicate that when using a KDF like PBKDF2 some advocate injecting the salt at the time of execution - like this:
dv = salt + PBKDF2(salt + password, salt)
Versus the ...
-1
votes
1answer
46 views
Using a Masterkey for Encryption, but how to reconstruct it? [closed]
I have an Android device that is used by some colleagues and me to collect and analyze data.
In my app, they can type in some information, which will be be analyzed by me in my php application later.
...
3
votes
1answer
101 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 ...
3
votes
1answer
216 views
PBKDF2-HMAC-SHA-512 test vectors
I have not been able to find published test vectors for PBKDF2-HMAC-SHA-512. I've built a function that (finally!) reproduces the 7 HMAC-SHA-512 test vectors in RFC 4231, and the 32-byte test vectors ...
0
votes
1answer
27 views
hash_pbkdf2 gives no output
I'm writing a piece of php code but is does not give me the output i want;
function passhash($unhashPass){
if(CRYPT_BLOWFISH != 1) {
throw new Exception("bcrypt not supported in this ...
5
votes
2answers
192 views
why is my pbkdf2 implementation so slow (vs. SQLCipher)?
I have written a simple Android App on my Xoom tablet, which simply stores some string notes in a SQLCipher database.
The user is prompted to type in a passphrase which will be used for the database ...
1
vote
1answer
115 views
PBKDF2 security key in android [closed]
I get from server password like show below and i need to verify that user password is same like form server. How can i do it please?
From server i got this
...
0
votes
1answer
129 views
Password base encryption OpenSSL C++
I'm on a team creating an application used in a medical setting. We are looking to store local data encrypted using AES based on passwords that are stored in an SQLite database (hashed and salted). ...
0
votes
1answer
174 views
basic php pbkdf2 hashing
I am relatively new to php, and just beginning to grasp the point of salt when it comes to hashing passwords (I think?). Anyways, here's my problem...
Right now I have a mysql database with a ...
0
votes
0answers
127 views
How to retrieve Hash Password in C#?
What is the proper way to retrieve / reset password / Forgot Password ?
I used Password Based Key Derivation Function 2 (PBKDF2) in the Rfc2898DeriveBytes class.
public static string ...
4
votes
1answer
268 views
How can PBKDF2 using HMAC SHA-1 return more than 20 bytes?
If Node's crypto.PBKDF2 uses HMAC SHA-1, how can the key length ever be more than 20 bytes?
Here's what I understand (apparently incorrectly): crypto.PBKDF2(password, salt, iterations, keylen, ...
2
votes
2answers
137 views
crypto.pbkdf2 is asynchronous, how do I treat it as synchronous?
I'm using pbkdf2 in node.js for hashing passwords.
My problem is that I'm responding to a request for authentication and I'm in the middle of authenticating if the passed credentials are correct. ...
1
vote
1answer
137 views
Implementations PBKDF2 in Delphi?
How do I use this algorithm in Delphi? Is there a class to do this in Delphi?
Thank you.
0
votes
2answers
75 views
Is CCKeyDerivationPBKDF thread safe?
I'm using CCKeyDerivationPBKDF to generate and verify password hashes in a concurrent environment and I'd like to know whether it it thread safe. The documentation of the function doesn't mention ...
1
vote
1answer
107 views
Key derivation function for random bytes?
I know KDF (Key derivation function) are used to stretch user passwords, which are basically not suitable to be used as keys in cryptographic algorithms.
But what if I create a random key (random 32 ...
1
vote
1answer
99 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
180 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?
1
vote
1answer
232 views
pbkdf2 VS bcrypt, rounds?
I've a dumb question (and probably has been already asked):
People always compare between BCrypt and PBKDF2 and say that BCrypt is better because it is for example slower to use GPU, but they ignore ...
1
vote
1answer
81 views
GPU KDF hasher (instead of cracker)
So I've been keeping up with GPU crackers and they are quite impressive. I've seen some articles saying someone got up to 384 billion passwords a second. We've been using PBKDF2 with random salt ...
0
votes
1answer
88 views
Security with PBKDF2 in PHP
So I am storing some sensitive data in the database (a few passwords amongst other things), and I am currently using this:
https://github.com/P54l0m5h1k/PBKDF2-implementation-PHP
In short, it allows ...
2
votes
1answer
210 views
python passlib: what is the best value for “rounds”
from the passlib documentation
For most public facing services, you can generally have signin take upwards of 250ms - 400ms before users start getting annoyed.
so what is the best value for ...
1
vote
1answer
137 views
How can I hash a password in Tornado with minimal blocking?
I'm using PBKDF2, but this applies equally to BCrypt.
Hashing a password with a reasonable number of iterations can easily block for 0.5 seconds. What is a lightweight way to take this out of ...
2
votes
1answer
148 views
Why I get different results with PBKDF2 on different machines?
I have am trying to use PBKDF2 to store passwords. I am then using the code with the password hashes it generated on a different machine.
I am using this method to encrypt my passwords:
public ...
0
votes
0answers
239 views
PBKDF2 Password Hashing for PHP
Thanks to some great advice on a recent post I'm implementing PBKDF2 from
https://defuse.ca/php-pbkdf2.htm into a small PHP image gallery I'm building to teach myself some PHP.
I understand that you ...
0
votes
1answer
126 views
pbkdf2 key length
What is the $key_length in PBKDF2
It says that it will be derived from the input, but I see people using key_lengths of 256 and greater, but when I enter 256 as a key_length the output is 512 ...
1
vote
2answers
134 views
what are appropriate PBKDF2 settings?
I have a few questions about what are appropriate PBKDF2 settings. I googled for answers and came up mostly empty handed.
Basically, I would like to know what are appropriate values for the input ...
0
votes
1answer
99 views
Using mcrypt_create_iv on PHP IIS
I'm trying to set up password salting on our website, and found the PBKDF2 functions at https://defuse.ca/php-pbkdf2.htm
When I try it, I get:
Fatal error: mcrypt_create_iv(): Could not gather ...
0
votes
0answers
144 views
Client side or server side pbkdf2
I was wondering how you implement a client side PBKDF2 secure solution. I would like to have the pbkdf2 algorithm to run on the client side in javascript to prevent the server from doing the cpu ...
1
vote
1answer
636 views
pbkdf2 and hash comparison
I use mitsuhiko's implementation of pbkdf2 for password hashing:
def pbkdf2_bin(data, salt, iterations=1000, keylen=24, hashfunc=None):
"""Returns a binary digest for the PBKDF2 hash algorithm of ...
2
votes
0answers
161 views
hasher not found
I'm trying to use different hashers with django 1.4. I have a hasher file 'hashers.py' in my app 'accounts',
import hashlib
from pbkdf2 import pbkdf2
from django.contrib.auth.hashers import ...
2
votes
2answers
2k views
How to properly store a PBKDF2 password hash
I have been doing some research for proper ways to hash/encrypt a password and store it in a database. I knew about Salt and Hashing so I looked around and PBKDF2 seemed to be a good choice. So I've ...
0
votes
0answers
99 views
Combining BCrypt with another hashing algorithm
We are currently in the process of strengthening our password protection.
We have been doing a fair amount of reading on SHA-2, Bcrypt, PBKDF2, and Scrypt. That being said, we are not security experts ...
2
votes
0answers
172 views
CAPI does not support Password Based Encryption (PBE) encryption?
I am trying to port a UNIX code using OpenSSL (PKCS#5 & PKCS#7) to windows.
In the case of OpenSSL, all the encoding/decoding (certificates or
passwords) is done transparently to the caller in ...
1
vote
2answers
563 views
PBKDF2, Java Implementation from C#
Trying to get a java implementation of PBKDF2, I used this as my C# version: https://github.com/shawnmclean/SimpleCrypto.net
My code:
import java.security.Key;
import ...
1
vote
2answers
682 views
PBKDF2 with SHA256 on android
I want to generate a derived hash of a password using PBKDF2 with SHA256. with this SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1") this work but it use SHA1.
With ...
2
votes
1answer
582 views
Storing password and salt in MySQL DB using PBKDF2
I have been trying to make my users passwords really secure using pbkdf2.
The password hash goes into the database fine, but the salt is not.
It seems the salt contains exotic characters that the ...
1
vote
4answers
1k views
About how fast can you brute force PBKDF2?
After the linkedin password hash leak, I've been looking at our password hashing. We using Django 1.4 which uses PBKDF2, which is great and a step up from the previous SHA1.
However I'm curious how ...
1
vote
1answer
675 views
Should all implementations of PBKDF2 generate the the same key from identical input?
I'm switching my node.js's application's hashing algorythms from the JS based CryptoJS implementation to the node's own crypto implementation.
Here is my implementation:
var password = "password1";
...
2
votes
1answer
938 views
PBKDF2 recommended key size?
My function is as follows:
pbkdf2($raw_pw,$salt,1000,128)
1000 is the number of passes, and 128 is the key size. The function returns a binary key which I use base64 to store it in the database.
...
0
votes
1answer
123 views
Is the same key derived providing the same salt and password using Rfc2898DeriveBytes
I read this tutorial about encryption in .NET
it uses Rfc2898DeriveBytes to create a random key to be used by symmetric algorithm . but it doesn't save the key . and later in decryption method it ...
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.
3
votes
1answer
577 views
RNGCryptoServiceProvider does not produce same hash for same PWD,Salt,Iteration combination
Oki So I want to hash my password by appending random salt in .Net . The inbuilt classes I m using for this purpose are RNGCryptoServiceProvider - to generate the random salt and Rfc2898DeriveBytes - ...
5
votes
1answer
520 views
HEX representation of byte array
I feel pretty stupid asking this, but as I don't know the answer, I'm going ahead anyway.
I"m trying out some authentication code and want to know why the byte array I get from Rfc2898DeriveBytes ...
2
votes
1answer
3k views
How to use PKCS5_PBKDF2_HMAC_SHA1()
I am trying to use PKCS5_PBKDF2_HMAC_SHA1() and below is my sample program. I wanted to make sure if my result of PKCS5_PBKDF2_HMAC_SHA1() is correct so I verified the same with the website ...
2
votes
2answers
486 views
Rfc2898DeriveBytes + PBKDF2 + SecureString is it possible to use a secure string instead of a string?
I've a function GetPassword, that returns a SecureString type.
When I pass this secure string to Rfc2898DeriveBytes to generate a key, Visual Studio shows an error. My limited knowledge tells me that ...
1
vote
2answers
841 views
Some questions about PBKDF2
I'm using PBKDF2 to derive a key from a password string in my app and I just have a few questions about it.
First is I saw lots of PBKDF2 online using hashes like HMAC-SHA256. What does it mean that ...
-1
votes
1answer
202 views
Proper/Secure encryption of data using AES and a password
Right now, this is what I am doing:
1. SHA-1 a password like "pass123", use the first 32 characters of the hexadecimal decoding for the key
2. Encrypt with AES-256 with just whatever the default ...
0
votes
1answer
692 views
RFC2898DeriveBytes implementation in Java
I have to decrypt a string encrypted in C# as a part of our project. This decryption is done using AES algorithm and packing mode as PKCS7. For generating the initialization vector they have used the ...
6
votes
3answers
1k views
C# PasswordDeriveBytes Confusion
I have following code in C#
PasswordDeriveBytes DerivedPassword = new PasswordDeriveBytes(Password, SaltValueBytes, HashAlgorithm, PasswordIterations);
byte[] KeyBytes = DerivedPassword.GetBytes(32);
...
2
votes
1answer
2k views
Java - PBKDF2 with HMACSHA256 as the PRF
I've been given the task of creating a Login API for our project and I'm supposed to use PBKDF2 with HMACSHA256 as the PRF. The plain text password is hashed using MD5 and then fed into the PBKDF2 to ...
