I have a program that uses the .NET method ProtectedData.Protect to encrypt a password using DataProtectionScope.LocalMachine
. I have the decrypted password. From what it looks like the encryption algorithm is TripleDES.
I would like to use Python+Pycrypto to decrypt this password, but I'm not sure what the IV is. Is it reasonably possible to figure out what the IV is and decrypt the PW with Pycrypto?