Qt-AES icon indicating copy to clipboard operation
Qt-AES copied to clipboard

Native Qt AES encryption class

Results 22 Qt-AES issues
Sort by recently updated
recently updated
newest added

It will crash in MinGW32

I'm currently at a point that requires me to decode an encrypted QByteArray but in my case it is possible for the passed data to be invalid. If I now...

Error - RtlWerpReportException failed with status code :-1073741823. Will try to launch the process directly

I use it(QT) to encrypt(AES128,ECB),key.length > 16 And I want to use nodejs to decrypt , It failed Does it have anything to pay attention to, or does it not...

Is there any plan to supporting AES GCM method?

Hi Is there a method to derive iv from password ? without salt, basically I need to replicate this openssl command on iOS and Android: openssl enc -aes-128-ecb -a -K...

Please I have a problem in Qt-AES library, when I encrypt text multiple times in the same app, I get a text encrypted with less characters, and when I desencrypt...

Lovely library and been working without issues for osx. However, trying to use with windows and having issues. Debug works fine and the same output is generated (as on osx)...

E:\Code_Qt\Qt-AES-master\qaesencryption.cpp:37: error: 'class QByteArray' has no member named 'back' ret.remove(ret.length() - ret.back(), ret.back()); ^

enhancement

`QByteArray decrypted_file_buffer_1 = QAESEncryption::Decrypt(QAESEncryption::AES_256, QAESEncryption::CBC, encrypted_file_buffer_1, hash_key, hash_iv);` `QByteArray decrypted_file_buffer_2 = QAESEncryption::Decrypt(QAESEncryption::AES_256, QAESEncryption::CBC, encrypted_file_buffer_2, hash_key, hash_iv);` Calling like this for multiple file buffers results in random heap corruption. It doesn't...

help wanted