Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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, ...
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 ...
4
votes
4answers
6k views

How to encrypt in VBScript using AES?

I am looking to encrypt some data using Rijndael/AES in VBScript using a specific key and IV value. Are there any good function libraries or COM components that would be good to use? I looked at ...
3
votes
2answers
1k views

Java equivalent of C#'s Rfc2898DerivedBytes

I was wondering if anyone have tried to do an equivalent of Rfc2898DeriveBytes key = new Rfc2898DeriveBytes(secret, saltValueBytes); byte[] secretKey = key.GetBytes(16); in Java. Where secret is a ...
1
vote
2answers
459 views

Why do I need to use the Rfc2898DeriveBytes class (in .NET) instead of directly using the password as a key or IV?

What is the difference between using Rfc2898DeriveBytes and just using Encoding.ASCII.GetBytes(string object);? I have had relative success with either approach, the former is a more long winded ...
1
vote
2answers
706 views

How does RFC2898DeriveBytes generate an AES key?

I saw some code like string password = "11111111"; byte[] salt = Encoding.ASCII.GetBytes("22222222"); Rfc2898DeriveBytes key = new Rfc2898DeriveBytes(password, salt); RijndaelAlg.Key = ...
1
vote
3answers
600 views

Public Overrides Function GetBytes() As Byte() is obsolete

What does the poet try to say? Public Overrides Function GetBytes() As Byte() is obsolete: Rfc2898DeriveBytes replaces PasswordDeriveBytes for deriving key material from a password and is preferred ...
0
votes
0answers
46 views

Generating 128byte hashes using Rfc2898DeriveBytes

Using the Rfc2898DeriveBytes how do i generate 128Byte[128 characters i suppose] since my database password column is 128 in length. Here is below code i tried changing things to test but am not sure ...