My company is in the process of transitioning to the website only from a third party. We rewrote the website, and the last step is to import existing users. We have a database with users and their passwords. We were also given a “key” and told that the password field is encrypted using AES encryption.
I need to decrypt passwords and then re-encrypt them in a new database using my company key. Using .Net, how can I decrypt passwords with just a key? All the samples I've seen require information like BlockSize, InitializationVector, KeySize, etc. I do not have this information.
thanks
source
share