Crypto (Digital Signatures)Page edited by Claus IbsenCrypto component for Digital SignaturesAvailable as of Camel 2.3 Using Camel cryptographic endpoints and Java's Cryptographic extension it is easy to create Digital Signatures for Exchanges. Camel provides a pair of flexible endpoints which get used in concert to create a signature for an exchange in one part of the exchange's workflow and then verify the signature in a later part of the workflow. IntroductionDigital signatures make use Asymmetric Cryptographic techniques to sign messages. From a (very) high level, the algorithms use pairs of complimentary keys with the special property that data encrypted with one key can only be decrypted with the other. One, the private key, is closely guarded and used to 'sign' the message while the other, public key, is shared around to anyone interested in verifying your messages. Messages are signed by encrypting a digest of the message with the private key. This encrypted digest is transmitted along with the message. On the other side the verifier recalculates the message digest and uses the public key to decrypt the the digest in the signature. If both digest match the verifier knows only the holder of the private key could have created the signature. Camel uses the Signature service from the Java Cryptographic Extension to do all the heavy cryptographic lifting required to create exchange signatures. The following are some excellent sources for explaining the mechanics of Cryptography, Message digests and Digital Signatures and how to leverage them with the JCE.
URI formatAs mentioned Camel provides a pair of crypto endpoints to create and verify signatures
In order to correctly function, sign and verify need to share a pair of keys, sign requiring a PrivateKey and verify a PublicKey (or a Certificate containing one). Using the JCE is is very simple to generate these key pairs but it is usually most secure to use a KeyStore to house and share your keys. The DSL is very flexible about how keys are supplied and provides a number of mechanisms. Note a crypto:sign endpoint is typically defined in one route and the complimentary crypto:verify in another, though for simplicity in the examples they appear one after the other. It goes without saying that both sign and verify should be configured identically. Options
Using1) Raw keysThe most basic way to way to sign an verify an exchange is with a KeyPair as follows. The same can be achieved with the Spring XML Extensions using references to keys 2) KeyStores and Aliases.The JCE provides a very versatile KeyStore for housing pairs of PrivateKeys and Certificates keeping them encrypted and password protected. They can be retrieved from it by applying an alias to the retrieval apis. There are a number of ways to get keys and Certificates into a keystore most often this is done with the external 'keytool' application. This is a good example of using keytool to create a KeyStore with a self signed Cert and Private key. The examples use a Keystore with a key and cert aliased by 'bob'. The password for the keystore and the key is 'letmein' The following shows how to use a Keystore via the Fluent builders, it also shows how to load and initialize the keystore. Again in Spring a ref is used to lookup an actual keystore instance. 3) Changing JCE Provider and AlgorithmChanging the Signature algorithm or the Security provider is a simple matter of specifying their names. You will need to also use Keys that are compatible with the algorithm you choose. or 4) Changing the Signature Mesasge HeaderIt may be desirable to change the message header used to store the signature. A different header name can be specified in the route definition as follows or 5) Changing the buffersizeIn case you need to update the size of the buffer... or 6) Supplying Keys dynamically.When using a Recipient list or similar EIP the recipient of an exchange can vary dynamically. Using the same key across all recipients may neither be feasible or desirable. It would be useful to be able to specify the signature keys dynamically on a per exchange basis. The exchange could then be dynamically enriched with the key of its target recipient prior to signing. To facilitate this the signature mechanisms allow for keys to be supplied dynamically via the message headers below
or Better again would be to dynamically supply a keystore alias. Again the alias can be supplied in a message header
or The header would be set as follows See Also
Change Notification Preferences
View Online
|
View Change
|
Add Comment
|
- [CONF] Apache Camel > Crypto (Digital Signatures) confluence
- [CONF] Apache Camel > Crypto (Digital Signatures) confluence