C++ cryptography new library

how usefull?

  • not very usefull

    Votes: 0 0.0%
  • usefull

    Votes: 0 0.0%
  • very usefull

    Votes: 0 0.0%

  • Total voters
    0
  • Poll closed .
Joined
Aug 17, 2024
Messages
3
Reaction score
0
so i wrote this module based on c++ that has almost all the available modes of operation and they're relative algorithms associated to each one, this is how you can use it to encrypt and decrypt:

C++:
#include "/path/to/ByteCrypt.hpp"

using namespace ByteCryptModule;

int main(){

auto encrypted = bCrypt.gcm_encrypt(buffer, secret, e_symmetric_algo::AES);
auto decrypted = bCrypt.gcm_decrypt(encrypted, e_symmetric_algo::AES);

std::cout << "decrypted: " << decrypted.result << "\n";

return 0;
}

is very very user friendly, other libraries such as crypto++ make it really hard for newbies to use them, this one instead is newbie-proof, if you want to know more about it,here's the github repository with all documentation, tests, etc... im not trying to sell it, so don't ask me, im just sharing it, so maybe i can get some new insights, or someone more advances could even tell me how to do better, i don't know. here's the link: https://github.com/Somorpher/ByteCrypt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,989
Messages
2,570,207
Members
46,783
Latest member
RickeyDort

Latest Threads

Top