Per Message Encryption
FioranoMQ provides 'per message' encryption that allows JMS applications to selectively encrypt messages before distributing them over the network.
Support for encryption has been added to the FioranoMessage class. APIs added to the FioranoMessage class are:
public void enableEncryption ()
Throws a FioranoException.
This is used to encrypt a message prior to distributing it over the network. DES is the default algorithm used.
public void enableEncryption (String algo, String key)
Throws a FioranoException.
This API views the algorithm and the key as string parameters to be used to encrypt messages to be distributed over the network.
public void decrypt ()
Throws a FioranoException.
This API is used to decrypt received messages using the default algorithm.
public void decrypt (String algo, String key)
Throws a FioranoException.
This API is used to decrypt received messages using the same algorithm and key that was provided during the encryption of the message.