Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple C++ Encryption - Decryption Library? [duplicate]

Tags:

c++

encryption

Possible Duplicate:
What is the best encryption library in C/C++?

Looking for a plug n play Encrypt Decrypt library in c++ on windows, usage is pretty simple, encrypt the username and password entered in the edit boxes and save them in registry, in the next run retrieve them from the registry decryt and populate the respective edit controls. Tried googling and reading through some articles, but couldn't find a clean one without problems and is simple and dependable.

like image 802
StudentX Avatar asked Dec 10 '12 21:12

StudentX


1 Answers

Keyczar, all the way. It's hands-down the simplest way to do encryption The Right Way.

Keyczar is an open source cryptographic toolkit designed to make it easier and safer for devlopers to use cryptography in their applications. Keyczar supports authentication and encryption with both symmetric and asymmetric keys.

It's about as "plug n play" as you could imagine. Take a look at the C++ tutorial for more.

like image 118
Matt Ball Avatar answered Sep 30 '22 17:09

Matt Ball