RSA Encryption (General questions)
I am working with a ecommerce package that stores the credit card information in encrypted format using RSA encryption. They provide a private key you can use in their software to view the credit card information.
I need to export the data out of the store into another system and I need to decrypt the data before I insert it.
The key file (XML) that is generated is formatted like this:
<RSAKeyValue>
<Modulus>longbitoftexthere</Modulus>
<Exponent>text</Exponent>
<P>longbitoftexthere</P>
<Q>longbitoftexthere</Q>
<DP>longbitoftexthere</DP>
<DQ>longbitoftexthere</DQ>
<InverseQ>longbitoftexthere</InverseQ>
<D>longbitoftexthere</D>
</RSAKeyValue>
Can I use wodCrypt to decrypt the credit card information using the private key they provided me?