cancel
Showing results for 
Search instead for 
Did you mean: 

PGP encryption and Decryption

Former Member
0 Kudos

Hello all Experts,

My requirement is all payment files coming from bank should be in PGP encrypted. Can we do this using Seeburger also.

Please could you help me in telling how to encryied and decryied message.

thanks $regard

sappi user

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

HI,

chk this also:

/people/sekhar.dachepalli/blog/2010/12/16/pgp-encryption-and-decryption-process-in-pi

Thanks

Amit

Former Member
0 Kudos

There are different ways u can encrypt messages.

1) Buy 3rd party libraries and using them then develop ur own custome adapter module for PGP encryption and decryption (i have implemented the same in my landscape using "DIDISOFT" libraries)...there is also one blog available on SDN

2) U can also use OS commads for the same:

/people/aashish.sinha/blog/2011/03/01/e-payment-a-customized-solution-other-than-sap-integration-package-swift-150-part-2-150-merge-encrypt-and-send-to-bank

3) Using java mapping..u can proceed like this:

/people/sandeep.maurya4/blog/2011/01/23/pgp-encryptiondecryption-using-java-code

Former Member
0 Kudos

I agree with Amitsri.

For OS script to encrypt/decrypt file, you have to install a PGP program on your pi system before.

Encrypting Script can be something like this:

#!/bin/sh

cd /opt/pgp-6.5.8/

pgp -e /directory/out/$1 -o /directory/crypted/$1 PIUSER

chmod 777 /directory/crypted/$1.pgp

Before runnning encryption, you have to generate a public/private key, according to your PGP program.