I have a password like "abd123456
", that I encrypt with AES-256 encryption. After Base-64 encoding, the result would be the 44 character string:
IXCgaa5igYxzKTRTP+PMT7Bt9iIWiF6EWLmnKqZtlXI=
How can I know the salt that the .NET Framework's RijndaelManaged AES encryption class used during encryption?
I know the plaintext that is being encrypted, and the encryption key. But how do I know the Salt used?