Update README.md

This commit is contained in:
Matteo Brichese 2018-03-28 18:02:21 -07:00 committed by GitHub
parent 839c544555
commit a74a46e08e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,6 +88,8 @@ Static invocation without creating instances, 256 bit key, ECB mode, starting fr
//Static invocation
QByteArray encrypted = QAESEncryption::Crypt(QAESEncryption::AES_256, QAESEncryption::CBC,
inputStr.toLocal8Bit(), hashKey, hashIV);
//...
// Removal of Padding via Static function
QString decodedString = QString(QAESEncryption::RemovePadding(decodeText));
```