vote up 1 vote down star
1

Guys, 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 algorithm class, PasswordDeriveBytes and Rfc2898DeriveBytes, both inherit from DeriveBytes abstract class.

The PasswordDeriveBytes.GetBytes() method is marked as obsolete in .NET framework while Rfc2898DeriveBytes.GetBytes() is recommended, as it matches the PBKDF2 standard. However, based on my testing, calling the same GetBytes() method in Rfc2898DeriveBytes class is almost 15 times slower than that in PasswordDeriveBytes class, which leads to unexpected CPU usage (always higher than 50%).

Here're some testing data:
.iterations: 100, .Algorithm type: DES, .Original Text: "I'm a test key, encrypt me please"
.time - PasswordDeriveBytes: 99ms, - Rfc2898DeriveBytes: 1,373ms

Based on the testing, the bad performance of Rfc2898DeriveBytes is not acceptable in production environment.

Has anyone noticed this problem before? Any solution I can still use a standard one without hitting the performance? Any risk to use an obsolete method (could be removed in future version)?

Thanks guys!

[Edit]Probably I found where the problem is... The default iteration count number for PasswordDeriveBytes is 100, while for Rfc2898DeriveBytes is 1000. After I changed them to the same number as 1000, executing Rfc2898DeriveBytes is only double time.

flag
How often are you going to be deriving keys in a production environment? And, regarding your timing data, when you said "100 iterations" - is that iterations on the onee key, or did you generate 100 keys. Any perf data based on 100 trials is suspect, but I think you actually tested ONE trial. As in all perf analysis cases, it is simly not appropriate to draw conclusions about server performance based on the response time of a single trial. – Cheeso Sep 1 at 2:05
@Cheeso The test was just a unit test of the performance for these two classes and it was not done in a real app. The "100 iterations" I mentioned was a little bit confusing, that only means I executed each of them 100 times. That's not a real perf testing but just a comparison. – tshao Sep 1 at 3:41

2 Answers

vote up 3 vote down check

They aren't the same thing.

Rfc2898DeriveBytes is an implementation of PBKDF2. PasswordDeriveBytes is an implementation of PBKDF1. PBKDF2 generates a different output, using a different method, and a much larger number of rounds than PBKDF1.

Password hashing functions, such as these, which are used for key derivation are supposed to be slow. That's the point - it makes them much more difficult to crack.

The two functions are not compatible, and PasswordDeriveBytes is not nearly as secure.

link|flag
Thanks BlackAura. I can understand the PBKDF2 implementation ought to be slow, but isn't there any best practice to use the Rfc2989DeriveBytes class, such as how to cache/reuse the same key/IV? Running a method multiple times as slow as that in production environment is not acceptable. :P – tshao Sep 1 at 1:44
Generally, you'd only want to use these functions to generate a key from a password. Usually for something like a password-protected archive, or similar. To encrpyt an archive, you'd generate a random IV, and generate a key from the password and the IV. You store the IV (but never the key). You can then re-use the key for every file in the archive, as long as each file is encrypted with a different IV (also stored in the archive). The only other use for these functions is password hashing. You'd do this once, when a user logs in. For any other use, there's probably a better way. – BlackAura Sep 1 at 16:08
vote up 1 vote down

This blogpost talks about the differences between the two: http://blogs.msdn.com/shawnfa/archive/2004/04/14/generating-a-key-from-a-password.aspx

link|flag
Thx a billion, that's really really helpful! :) – tshao Sep 1 at 1:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.