public interface EncryptionService
| Modifier and Type | Method and Description |
|---|---|
byte[] |
decrypt(byte[] message)
Decrypt the message with an application scoped IV
|
byte[] |
decrypt(byte[] iv,
byte[] message)
Decrypt the message with an IV
|
byte[] |
encrypt(byte[] message)
Encrypt the message with an application scoped IV
|
byte[] |
encrypt(byte[] iv,
byte[] message)
Encrypt the message with a iv
|
byte[] encrypt(byte[] message)
message - the message to encryptbyte[] encrypt(byte[] iv,
byte[] message)
message - the message to encryptiv - The IV to encrypted the message withbyte[] decrypt(byte[] message)
message - the message to decryptbyte[] decrypt(byte[] iv,
byte[] message)
message - the message to decryptiv - The IV to encrypted the message withCopyright © 2015 JBoss by Red Hat. All rights reserved.