
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Qrypto is a simple application that allows you to encrypt or hash a string text and include other encoding/decoding functions.
10 years ago
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
10 years ago
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
Urvin
10 years ago
I've downloaded crypto++ src into cryptopp dir of the project, but there are lots of errors
Report
Amine27
10 years ago
http://www.qtcentre.org/threads/28809-Compiling-amp-using-Crypto-with-mingw-version-of-Qt
Good luck.
Report
crossdev
11 years ago
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.
Report
Amine27
10 years ago
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 :)
Report
crossdev
10 years ago
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
Report
Amine27
10 years ago
Report
tephyrnex
11 years ago
Report
Amine27
11 years ago
Report
hallowname
12 years ago
i think ill make a little rot13 example qt app if i cant find one.
thanx for this wonderful app tho!
Report
Amine27
12 years ago
I just added it in the next release
Report
heinzkde
12 years ago
add the line:
LIBS += -lcryptopp
to the pro-file. Then Qrypto will compile AND link :-)
Regards, Heinz
Report
Amine27
12 years ago
i added it to the Makefile before
and now i update the .pro file
Thank you
Report