[AAA-140] AAA Service's Encryption/Decryption API's do not propagate exceptions Created: 25/Jul/17 Updated: 05/Sep/19 |
|
| Status: | Confirmed |
| Project: | aaa |
| Component/s: | General |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Improvement | ||
| Reporter: | Atul Gosain | Assignee: | Unassigned |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Environment: |
Operating System: All |
||
| Description |
|
The AAAEncryptionService's encrypt and decrypt service methods never throw an exception if there is a problem during encrypion or decryption process. This defect is a request to have these services throw exceptions when they occur.
public interface AAAEncryptionService { public String encrypt(String data); public String decrypt(String encData); public byte[] encrypt(byte[] data); public byte[] decrypt(byte[] encData); }
|