Does QCA (Qt Cryptographic Architecture) support SHA-2 (SHA256 in particular)? If not: Is there a plug-in for SHA-2 hashing in Qt?
Please let me know some configuration details as well.
|
Does QCA (Qt Cryptographic Architecture) support SHA-2 (SHA256 in particular)? If not: Is there a plug-in for SHA-2 hashing in Qt? Please let me know some configuration details as well. |
||||
|
|
|
Yes it does, by adding the OSSL provider plugin: See the table at the bottom of the page. A tutorial on how to install and include QCA with this provider plugin can be found here (for both Linux and Windows/mingw32 environments): You can then check it during runtime of your application using this code snippet:
For very-high-security projects (for which you need a software certificate or a professional code review) you could also use Crypto++, which is a certified library providing SHA-2 out of the box: For the certified versions, see the section FIPS 140-2 Conformance at the bottom of the page. Note that the certified versions are for Windows only. Note that Qt 5 has SHA-2 built-in: http://doc-snapshot.qt-project.org/5.0/qcryptographichash.html#details I guess that you want your application to be Qt 4 compatible. However, you should think about using the built-in SHA-2 implementation if your application is compiled with Qt5, which can be done using preprocessor conditions and in the .pro file conditional library inclusion. |
|||||||||||
|