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 ...
Search found 1 match
- Sat Mar 02, 2019 3:15 am
- Forum: AES Crypt
- Topic: Allow the use of stronger key derivation functions
- Replies: 1
- Views: 9084