We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 839c544 commit a74a46eCopy full SHA for a74a46e
README.md
@@ -88,6 +88,8 @@ Static invocation without creating instances, 256 bit key, ECB mode, starting fr
88
//Static invocation
89
QByteArray encrypted = QAESEncryption::Crypt(QAESEncryption::AES_256, QAESEncryption::CBC,
90
inputStr.toLocal8Bit(), hashKey, hashIV);
91
+ //...
92
+ // Removal of Padding via Static function
93
QString decodedString = QString(QAESEncryption::RemovePadding(decodeText));
94
95
```
0 commit comments