Skip to content

Commit 666e9dd

Browse files
author
Matteo Brichese
committed
updated readme
1 parent e05e387 commit 666e9dd

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Qt-AES
22
Small and portable AES encryption class for Qt.
3-
Supports all key sizes - 128/192/256 bits - ECB and CBC modes
3+
Supports all key sizes - 128/192/256 bits - ECB, CBC and CFB modes
44

55
## Usage
66

@@ -81,9 +81,14 @@ Static invocation without creating instances, 256 bit key, ECB mode, starting fr
8181
## Unit Testing
8282
The unit testing vectors used are included in [NIST-Recommendation for Block Cipher Modes of Operation](http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38a.pdf)
8383

84+
## Dependencies
85+
* qtcore
86+
87+
No OpenSSL required.
88+
8489
## Contact
8590
Question or suggestions are welcome!
8691
Please use the GitHub issue tracking to report suggestions or issues.
8792

88-
## Licence
93+
## License
8994
This software is provided under the [UNLICENSE](http://unlicense.org/)

unit_test/aestest.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
#include <QCryptographicHash>
55
#include "qaesencryption.h"
66

7-
#include <QDebug>
8-
97
void AesTest::initTestCase()
108
{
119
quint8 key_16[16] = {0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c};

0 commit comments

Comments
 (0)