1
2
3
4
5
6
7
8
9
10
11
|
---AES testCFB1---
Generated Key: [104, 247, 101, 146, 249, 6, 239, 133, 109, 115, 7, 13, 137, 243, 27, 4],
key len:16
IV: [29, 184, 26, 181, 74, 103, 112, 236, 47, 132, 201, 215, 187, 4, 29, 32]
IV len: 16
---String:Hello world---
72 101 108 108 111 32 119 111 114 108 100 AES_ENCRYPT outBufLen= 0
---encryptedData:---
139 74 80 56 132 130 171 117 222 210 42 AES_DECRYPT outBufLen= 0
---decryptedData:---
72 101 108 108 111 32 119 111 114 108 100 ---decryptedString:Optional("Hello world")---
|