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
|
byte[] |
encrypt(byte[] message)
Encrypt the message with an application scoped IV
|
byte[] |
encrypt(byte[] iv,
byte[] message)
Encrypt the message with
|
byte[] encrypt(byte[] message)
message - byte[] encrypt(byte[] iv,
byte[] message)
message - iv - The IV to encrypted the message withbyte[] decrypt(byte[] message)
message - byte[] decrypt(byte[] iv,
byte[] message)
message - iv - The IV to encrypted the message withCopyright © 2013 JBoss by Red Hat. All Rights Reserved.