I have encrypted a file using a program with a password and would like to decrypt it on another device just with the password. Is there any software that takes the password, runs it through all key derivation functions and decrypts the file? The algorithm used is AES 256.
Asked
Active
Viewed 157 times
0
-
In addition to the password, the key derivation function also requires a salt. Do you know where the salt is stored? – mti2935 Jun 21 '20 at 11:24
-
1Do you want to decrypt it? Or do you want to know if somebody can decrypt this file by bruteforcing? – mentallurg Jun 21 '20 at 11:45
-
1Similar to: https://security.stackexchange.com/questions/226935/write-a-python-or-c-program-to-guess-the-key/226950#226950 – mti2935 Jun 21 '20 at 12:30
-
And in most cases the iteration count, and sometimes other parameters like a 'context' or 'label'. And the mode, because AES alone encrypts only 16 octets exactly, which almost no files are. – dave_thompson_085 Jun 22 '20 at 00:32