|
@@ -30,6 +30,9 @@ public class BasicDataEncryptionManager implements DataEncryptionManager {
|
|
* (byte[])
|
|
* (byte[])
|
|
*/
|
|
*/
|
|
public String decryptData(byte[] encrypted) throws Exception {
|
|
public String decryptData(byte[] encrypted) throws Exception {
|
|
|
|
+ if(encrypted == null) {
|
|
|
|
+ return "";
|
|
|
|
+ }
|
|
return new String(encrypted);
|
|
return new String(encrypted);
|
|
}
|
|
}
|
|
|
|
|