in reply to Reading a Rijndael encrypted connection string from a Windows registry

I couldn't find a "Data::Encrypt" module, but there is a Data::Encrypted module. That one works with RSA, which is for public-key crypto. Not what you want.

There is a Crypt::Rijndael module. You will also need to know if the data was encrypted in a specific cipher mode (probably CBC mode, if it was), in which case you'll need a module that can handle that mode, like Crypt::CBC.

----
I wanted to explore how Perl's closures can be manipulated, and ended up creating an object system by accident.
-- Schemer

: () { :|:& };:

Note: All code is untested, unless otherwise stated

  • Comment on Re: Reading a Rijndael encrypted connection string from a Windows registry
  • Download Code