My company is in the process of taking over a members only website from a 3rd party. We have re-written the website and the last step is to import the existing users. We have the database with users and their passwords. We also were given the 'key' and were told that the password field is encrypted with AES encryption.
I need to decrypt the passwords and then re-encrypt them in the new database using my company's encryption key. Using .Net, how can I decrypt the passwords with just the key? All the samples I have seen require information like BlockSize, InitializationVector, KeySize, etc. I don't have that information.
Thanks