Search found 1 match

by cschneegans
Sat Mar 02, 2019 3:15 am
Forum: AES Crypt
Topic: Allow the use of stronger key derivation functions
Replies: 1
Views: 6830

Allow the use of stronger key derivation functions

It seems that AES Crypt derives the AES key from a given password quite fast. As far as I can tell, there are only 8192 iterations in the GenerateAESKey1 method: private byte[] GenerateAESKey1(byte[] password) { … for (int i = 0; i < 8192; i++) { m_hash.Initialize(); m_hash.TransformBlock(key, 0, ke...