this.sharedKey = sharedKey;
}
@Override
public void configure() throws Exception {
CryptoDataFormat sharedKeyCrypto = new CryptoDataFormat("DES", sharedKey);
from("direct:encrypt")
.log("Encrypting message")
.marshal(sharedKeyCrypto)
.log("Message encrypted: ${body}")