cancel
Showing results for 
Search instead for 
Did you mean: 

pgp encryption in bods

Former Member
0 Kudos

HI ,

i want to  know  if biods support pop encryption, and how .

please advice.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

recipient VLT2DataServicePGP --homedir d:\gnupg -o "

What does above statement means and what's the active key here?

Also please send the link where to check these commands .

chethan_lingaraju
Active Participant
0 Kudos
chethan_lingaraju
Active Participant
0 Kudos

Get a PGP encryption/decryption algorithm implemented in Java or any language.

It should take command line arguments for

  1. Action to perform(Encryption/Decryption)
  2. Plaintext/Ciphertext file name & path
  3. key file & path


use exec command to execute the binary version of PGP.

Former Member
0 Kudos

Can you tell me what the below script does ?


    exec( 'gpg.exe', '--recipient VLT2DataServicePGP --homedir d:\gnupg -o "' || $TEMP_WORK_DIR || '\\FILENAME.txt.gpg" --encrypt "' || $TEMP_WORK_DIR || '\

\FILENAME.txt"');

chethan_lingaraju
Active Participant
0 Kudos

From the arguments passed, its clear that FILENAME.txt is being encrypted to FILENAME.txt.gpg using active private key. I found more details in this link.

former_member254877
Participant
0 Kudos

Hi Roma - Can you elaborate little on more on the issue?


Former Member
0 Kudos

Hello Srinivas ,

I want to understand the Encryption/decryption mechanisms in bods using exec commands .