Skip to main content

Adeptia Question - Encryption and Decryption

Comments

1 comment

  • David Paras

    PGP encryption can be done by using public key only. If you want to encrypt a file twice with two different public keys, then you have to use separate “custom plug-in” to encrypt the source file or you have to modify your current custom plug-in. Similarly, same thing can be followed for the process of Decryption also:

    Structure of Encryption Process flow should be similar to:

    FileSource >> CP_Encryption (Client1_Pub_Key) >> CP_Encryption (Client2_Pub_Key) >> FileTarget

    Structure of Decryption Process flow should be similar to:

    FileSource >> CP_Decryption (Client2_Pvt_Key) >> CP_Decryption (Client1_Pvt_Key) >> FileTarget

    PGP encryption/decryption is added as a service in upcoming Adeptia Suite6.0 maintenance patch. After that you will only need to create an activity for encryption/decryption by uploading public/private key file and you can use them in process flow directly.

    0

Post is closed for comments.