
Qrypto
Source (link to git-repo or to original if based on someone elses unmodified work):
0.4.1 :
- Fix compiling error with gcc 4.4
- Support thread in the brute forcer (experimentale)
- Add icons
0.4.0 :
- Update to version 5.6.0 of Crypto++ library
- Add theres encryption/decryprion functions:
Salsa20, SEAL, SEED, Sosemanuk, Panama, XSalsa20
0.3.1 :
- Fix bugs in the brute forcer
0.3 :
- Add ROT13
- Add Leet Speak Encode/Decode
- Add Reverse String
0.2 :
- Brute Forcer
- Some bug fix
0.1 :
Hashs :
- Adler32
- CRC32
- MD2, MD4, MD5
- RIPEMD128, RIPEMD160, RIPEMD320
- SHA1, SHA224, SHA256, SHA384, SHA512
- Tiger
- Whirlpool
Encryption/Decryprion functions :
- AES
- Blowfish
- Camellia
- CAST128, CAST256
- DES, DES EDE2, DES EDE3, DES XEX3
- GOST
- IDEA
- MARS
- RC2, RC5, RC6
- SAFER K
- SAFER SK
- Serpent
- SHACAL2
- SHARK
- SKIPJACK
- Square
- TEA, XTEA
- ThreeWay
- Twofish
Conversions :
- Base32Encode/Decode
- Base64Encode/Decode
- HexEncode/Decode
- URLEncode/Decode
- UUEncode/UUDecode
Tools :
- MemoTool
- Key Generator
Ratings & Comments
12 Comments
Please, give me an advice, how to compile and use your app on Windows! I've downloaded crypto++ src into cryptopp dir of the project, but there are lots of errors
Hi, follow the link above and you will get it all done: http://www.qtcentre.org/threads/28809-Compiling-amp-using-Crypto-with-mingw-version-of-Qt Good luck.
hi all, i'm interested this kind of sample, and i 'd tried to build it with cryptopp552 under ubuntu koala/carmic, i use qt creator, and i found lot's error about type, somekind of 'uint32_t' does not name a type am i lose some other library / any configuration? thankyou.
Hi, sorry for the late reply, you just need to include "stdint.h" file in order to compile the project with gcc 4.4, I updated it anyway :)
Thankyou for reply sir, i h'd recompile this with cryptopp552 and it show error about SEED not declared, this some compile output i get: /home/orgaz/qt/qt-ref/crypto-02/qrypto-0.4.1/src/Encryptions.cpp:618: error: ‘SEED’ has not been declared /home/orgaz/qt/qt-ref/crypto-02/qrypto-0.4.1/src/Encryptions.cpp:619: error: ‘key’ was not declared in this scope /home/orgaz/qt/qt-ref/crypto-02/qrypto-0.4.1/src/Encryptions.cpp:914: error: ‘XSalsa20’ is not a class or namespace
yes, you need the version >= 5.6.0 of crypto++
What version of Crypto++ is required? I am having some issues with the latest version (5.6).
It's compiled with Crypto++ 5.5.2, and yes it's have some problems with the latest version of the library
can i request that rot13 be added, just for kicks :P i think ill make a little rot13 example qt app if i cant find one. thanx for this wonderful app tho!
Hi, I just added it in the next release
Hello, add the line: LIBS += -lcryptopp to the pro-file. Then Qrypto will compile AND link :-) Regards, Heinz
Hi, i added it to the Makefile before and now i update the .pro file Thank you