PGP (Pretty Good Privacy) Encryption is a widely used encryption mechanism which can be used to provide public key encryption.
There are many PGP encryption implementations using Java language which are quite complex. But Apache Camel Crypto component facilitates a very simple and convenient way of implementing PGP encryption.
Following code encrypts a given message using Apache Camel. org.apache.camel:camel-crypto is the only one library i have used here.
Most of the example in the internet shows the way which a file is used as the input for the encryption. But here i will show you how to directly encrypt a string (text message).
I'm using the public key in the public.gpg file to encrypt the message. The code is really straight foreword. Complete working project is available on GitHub and the URL is available at the bottom. All required key files are available there. You can clone the project and execute the program.
Following is the GitHub URL of complete project of this tutorial.
https://github.com/lakjcomspace/PGPEncryption
There are many PGP encryption implementations using Java language which are quite complex. But Apache Camel Crypto component facilitates a very simple and convenient way of implementing PGP encryption.
Following code encrypts a given message using Apache Camel. org.apache.camel:camel-crypto is the only one library i have used here.
Most of the example in the internet shows the way which a file is used as the input for the encryption. But here i will show you how to directly encrypt a string (text message).
I'm using the public key in the public.gpg file to encrypt the message. The code is really straight foreword. Complete working project is available on GitHub and the URL is available at the bottom. All required key files are available there. You can clone the project and execute the program.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.lakj.comspace.pgp.encryption; | |
import java.io.File; | |
import org.apache.camel.CamelContext; | |
import org.apache.camel.ProducerTemplate; | |
import org.apache.camel.builder.RouteBuilder; | |
import org.apache.camel.converter.crypto.PGPDataFormat; | |
import org.apache.camel.impl.DefaultCamelContext; | |
/** | |
* This app encrypt a given string text message and save it to a file. | |
* | |
* Created by Lak J Comspace on 8/9/2018. | |
* | |
*/ | |
public class App { | |
public static void main(String[] args) throws Exception { | |
final String mySecretMessage = "This is a top secret."; | |
final String outputDirPath = "output"; | |
final String encryptedFileName = "mySecretFile.txt"; | |
File outputDir = new File(outputDirPath); | |
outputDir.mkdirs(); // Create output directory if does not exist. | |
System.out.println("Start encryption..."); | |
CamelContext camelContext = new DefaultCamelContext(); | |
camelContext.addRoutes(new RouteBuilder() { | |
public void configure() throws Exception { | |
PGPDataFormat format = new PGPDataFormat(); | |
format.setKeyFileName("file:keys/public.gpg"); | |
format.setKeyUserid("pgpencrypt@lakjcomspace.com"); | |
format.setArmored(true); | |
from("direct:textContent").marshal(format) | |
.to("file:" + outputDirPath + "/?fileName=" + encryptedFileName + "&charset=utf-8"); | |
} | |
}); | |
camelContext.start(); | |
ProducerTemplate template = camelContext.createProducerTemplate(); | |
template.sendBody("direct:textContent", mySecretMessage); | |
camelContext.stop(); | |
System.out.println("Encrypted file was saved."); | |
} | |
} |
https://github.com/lakjcomspace/PGPEncryption