MACSCryptPowerful cryptography algorithms implementation, with several user interfaces for the demonstration, but you still can access each separate algorithm from a simple API, you can even have a
... [More]
single library for specific algorithm without needing to include everything ...
Integrating MACSCrypt into your code is very simple, it's just one line code needed:
//DEFINING THE OBJECT:
MACSCrypt macsCryptObj = new MACSCrypt();
//DEFINING ALGORITHM AND MODE:
macsCryptObj.Algorithm = MACSCrypt::CALGORITHM::AES; //Or DES or DES3 or AES3(NEW!) and implementing ...
macsCryptObj.Mode = MACSCrypt::CMODE::EBC; //Or CBC or CTR or OFB or much more, and inventing ...
/*** AND here is the line: ***/
... read more at the project homepage ... [Less]