forked from Sumu-Ning/AES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
History.txt
13 lines (11 loc) · 864 Bytes
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
2015-07-09:
Initial Commit
2016-01-29:
Added AES Encryption Mode CBC, PCBC, CFB, OFB, CTR. ECB was default from last Commit
Added AES Encryption Testing Cases for CBC, CFB, OFB, CTR, ECB
Fixed a bug in ZCL_RIJNDAEL_UTILITY that only first block is encrypted/decrypted correctly
2016-07-02:
Added Utility for padding PKCS #5 and PKCS #7
Modified AES Interface to accept user selected padding standard (for now, only PKCS #7). The interface is backward compatible, and the default padding is no padding (Encryption: Add '00' to full block; Decryption: Nothing).
Re-factored codes to use ABAP table instead of xstring for intermittent storage, and hopefull this will increase the performance a little bit.
Added several more testing cases to cover part of the PKCS #7 and encryption mode combination (Only ECB, CBC and CTR for now).