MID Server IMidServerEncrypter interface
Use the methods in this interface to create a custom external encrypter for the MID Server config.xml file.
Note:
These methods are contained in the snc-automation-api.jar file,
located in the MID Server installation folder.
initialize
This method initializes the encrypter with additional configuration parameters and does not
return a value.
|
| Parameter | Description |
|---|---|
| properties | Initialization properties. |
java.lang.Exception |
encrypt
This method encrypts the unencrypted data and returns a byte[ ] type
value.
|
| Parameter | Description |
|---|---|
| unencryptedData | The data unencrypted. |
| Encrypted data |
java.lang.Exception |
decrypt
This method decrypts encrypted data and returns a byte[ ] type
value.
|
| Parameters | Description |
|---|---|
| encryptedData | The data decrypted. |
| Decrypted data. |
java.lang.Exception |