Tagged Questions
The pbkdf2 tag has no wiki summary.
6
votes
3answers
6k views
Getting SlowAES and RijndaelManaged class in .NET to play together
I'm trying to setup AES encryption / decryption using the javascript library SlowAES and the RijndaelManaged class in .NET.
I chose this method after reading this post, where Cheeso has managed to ...
6
votes
2answers
2k views
PBKDF2 implementation in C# with Rfc2898DeriveBytes
Guys, I'm trying to implement a PBKDF2 function in C# that creates a WPA Shared key. I've found some here: http://msdn.microsoft.com/en-us/magazine/cc163913.aspx that seems to produce a valid result, ...
5
votes
2answers
334 views
.NET: Difference between PasswordDeriveBytes and Rfc2898DeriveBytes
I'm trying to understand some C#-code, I have been handed, which deals with cryptography, and specifically uses PasswordDeriveBytes from System.Security.Cryptography.
In the .NET docs , it says that ...
5
votes
2answers
322 views
Recommended # of iterations when using PKBDF2-SHA256?
I'm curious if anyone has any advice or points of reference when it comes to determining how many iterations is 'good enough' when using PBKDF2 (specifically with SHA-256). Certainly, 'good enough' is ...
4
votes
1answer
1k views
Is there a standard for using PBKDF2 as a password hash?
Join me in the fight against weak password hashes.
A PBKDF2 password hash should contain the salt, the number of iterations, and the hash itself so it's possible to verify later. Is there a standard ...
4
votes
2answers
3k views
PasswordDeriveBytes vs Rfc2898DeriveBytes, Obsolete but way faster
I'm working on a encryption functionality based on classes inherited from SymmetricAlgorithm such as TripleDes, DES, etc.
Basically there're two options to generate consistent key and IV for my ...
3
votes
2answers
854 views
PBKDF2-HMAC-SHA2 test vectors
There are test vectors for PBKDF2-HMAC-SHA1 in RFC6070. There are test vectors for HMAC-SHA2 in RFC4231.
But so far I haven't found test vectors for PBKDF2-HMAC-SHA2 anywhere.
I'm most interested in ...
3
votes
1answer
607 views
PBKDF2-HMAC-SHA256 Objective-C implementation
Can someone point me to an implementation of PBKDF2 using HMAC-SHA256 to generate a key, in Objective-C. This is part of the key generation process that I will later use for AES-CBC-Pad encryption.
...
3
votes
1answer
786 views
PBKDF2 in Bouncy Castle C#
I've being messing around the C# Bouncy Castle API to find how to do a PBKDF2 key derivation.
I am really clueless right now.
I tried reading through the Pkcs5S2ParametersGenerator.cs and ...
3
votes
1answer
3k views
PBKDF2-HMAC-SHA1
To generate a valid pairwise master key for a WPA2 network a router uses the PBKDF2-HMAC-SHA1 algorithm. I understand that the sha1 function is performed 4096 times to derive the PMK, however I have ...
2
votes
0answers
103 views
PBKDF2 with bouncycastle in Java
I'm trying to securely store a password in a database and for that I chose to store its hash generated using the PBKDF2 function. I want to do this using the bouncy castle library but I don't know why ...
2
votes
1answer
110 views
Does Size of Bitstring Matter in Hashing Functions?
I'm trying to create an implementation of PBKDF2 to generate a key to encrypt a file with AES-256, but I have a question about salt size. I plan to use SHA-256 and concatenate with the passphrase, so ...
1
vote
1answer
110 views
PBKDF2 function in Android
Is there PBKDF2 implementation for Android. I am trying to derive a key using PBKDF2 function. I couldn't find an example to do so.
1
vote
0answers
133 views
getting “key too short” exception while creating object of SecretKeySpec
I am developing app where I use the PBKDF2 algorithm.
I am trying the following code:
Mac mac = Mac.getInstance();
mac.init(new SecretKeySpec(password,macAlgo));
In the above code the password is a ...
1
vote
3answers
360 views
Is SHA1 still secure for use as hash function in PBKDF2?
As there have been significant advances in the cryptoanalysis of SHA1 it's supposed to be phased out in favor of SHA2 (wikipedia).
For use as underlying hash function in PBKDF2, however, it's ...
1
vote
3answers
1k views
Password Encryption: PBKDF2 (using sha512 x 1000) vs Bcrypt
I've been reading about the Gawker incident and several articles have cropped up regarding only using bcrypt to hash passwords and I want to make sure my hashing mechanism is secure enough to avoid ...
1
vote
3answers
1k views
Using MD5 to generate an encryption key from password?
I'm writing a simple program for file encryption. Mostly as an academic exercise but possibly for future serious use. All of the heavy lifting is done with third-party libraries, but putting the ...
0
votes
1answer
39 views
I keep getting the wrong values for my PBKDF2 implementation
I'm trying to implement PBKDF2 and I keep getting the wrong result, not sure what the problem is...
I'm using the common crypto implementation to check my results
here is my test function
#include ...
0
votes
2answers
130 views
PBKDF2 using CommonCrypto on iOS
I'm trying to use CommonCrypto to generate keys using PBKDF2 but I can't seem to import CommonCrypto/CommonKeyDerivation.h, I just errors that it is not found.
Any ideas?
edit: I should probably ...
0
votes
0answers
38 views
ASP.Net machinekey support for PBKDF2
Does anyone know if it is possible to wrap the MS PBKDF2 implementation in a KeyedHashAlgorithm class, in order to use it from a machinekey section in web.config? If so, how is that accomplished?
0
votes
1answer
43 views
Is there a SQL implementation of PBKDF2?
Does anyone know of a SQL implementation of PBKDF2?
(I'd rather not use an external library like, for example, ChillKat's ActiveX component.)
0
votes
1answer
162 views
How do I wait for a callback in coffeescript (or javascript)?
I'm working on a password manager webapp that uses Parvez Anandam's pbkdf2.js for key generation (that is, turning a text password into a suitable 256 bit key for AES). I'm using the project to learn ...
0
votes
1answer
124 views
PBKDF2 not matching between Python and Javascript libraries
Using password "password", salt "1234567812345678" 100 repetitions, 128-bit result
http://bitwiseshiftleft.github.com/sjcl/demo/ is a javascript implementation, gives result ...
0
votes
1answer
487 views
PBKDF2 in Java with Bouncy Castle vs .NET Rfc2898DeriveBytes?
I have some C# code that generates a key using PBKDF2.
//byte[] salt = new RNGCryptoServiceProvider().GetBytes(salt);
byte[] salt = new byte[] { 19, 3, 248, 189, 144, 42, 57, 23 }; // for testing
...