Skip to main content
Skip table of contents

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:

CODE
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.

CODE
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.

CODE
public void decrypt ()

Throws a FioranoException.

This API is used to decrypt received messages using the default algorithm.

CODE
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.


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.