How Do I Decrypt: PeopleSoft Pluggable Encryption Technology
We are loading a data file into PeopleSoft Campus Solutions 9.0 tools 8.54 from an external system. One of the fields in the file has been encrypted using openssl in the following manner.
a) the keypair used for the encryption is built with this command:
openssl genrsa -out keypair.pem 2048
b) the field is encrypted with this command:
openssl rsautl -encrypt -inkey keypair.pem -pkcs -oaep < string_unencrypted.txt | openssl base64 > string_encrypted.txt
Can PeopleSoft Pluggable Encryption Technology via be used to decrypt this string? If so, what Algorithm ID's should be used in the Algorithm Chain and how should the corresponding Algorithm Keyset be configured? This seems straight forward but since I know only a little about encryption I do not see an obvious match between the PeopleSoft Algorithm ID and the openssl method used for encryption.