IDataEncryption
Leave feedback
On this page
public interface IDataEncryption
Encryption interface to provide object encoding and decoding methods.
| Method | Description |
|---|---|
| encode(String source) | Encode method to encrypt string. |
| decode(String source) | Decode method to obtain decrypted string. |
public abstract String encode(String source)
Encode method to encrypt string.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| source | java.lang.String | Source string to encode. |
Returns: java.lang.String - Returns encrypted string
public abstract String decode(String source)
Decode method to obtain decrypted string.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| source | java.lang.String | Encrypted string to decode. |
Returns: java.lang.String - Returns decrypted string
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.