¡@

Home 

c++ Programming Glossary: encrypt

SSL Certificate, not authenticating via thrift, but OK via browser

http://stackoverflow.com/questions/10964755/ssl-certificate-not-authenticating-via-thrift-but-ok-via-browser

what we are doing You are using SSL to authenticate and encrypt the communication between a Thrift server and a Thrift client...

C++ AES Encryption Class

http://stackoverflow.com/questions/12151178/c-aes-encryption-class

AES Encryption Class I need AES encryption for my C project. But i don't have the time to study the.. that provides something like void makekey .... string encrypt string data takes plain text returns encrypted text string decrypt.. .... string encrypt string data takes plain text returns encrypted text string decrypt string data takes encrypted text returns..

Load an X509 PEM file into Windows CryptoApi

http://stackoverflow.com/questions/1231178/load-an-x509-pem-file-into-windows-cryptoapi

relate to the plain Windows Crypto Api I understand how to encrypt decrypt once I've got a HCRYPTKEY. BUT I just don't get how..

How to hide a string in binary code?

http://stackoverflow.com/questions/1356896/how-to-hide-a-string-in-binary-code

executable file. For example it really make sense to hide encryption key from executable file. What I mean when I say hide Such.. file. What I mean when I say hide Such code const char encryptionKey My strong encryption key Using the key after compilation.. I say hide Such code const char encryptionKey My strong encryption key Using the key after compilation produce executable file..

Saving passwords inside an application

http://stackoverflow.com/questions/1484440/saving-passwords-inside-an-application

in some variables is OK. It might be wise to store them encrypted at least store the password encrypted so that it is not visible.. wise to store them encrypted at least store the password encrypted so that it is not visible in core dumps or the equivalent... necessary. Note that the binary will still contain the encryption key and encryption algorithm and encrypted data is more random..

Can you help me get my head around openssl public key encryption with rsa.h in c++?

http://stackoverflow.com/questions/2012645/can-you-help-me-get-my-head-around-openssl-public-key-encryption-with-rsa-h-in-c

you help me get my head around openssl public key encryption with rsa.h in c I am trying to get my head around public.. rsa.h in c I am trying to get my head around public key encryption using the openssl implementation of rsa in C . Can you help.. and sends public key to Bob Bob receives public key and encrypts a randomly generated symmetric cypher key e.g. blowfish with..

Encrypt/Decrypt SQLite-database and use it “on the fly”

http://stackoverflow.com/questions/2571620/encrypt-decrypt-sqlite-database-and-use-it-on-the-fly

I use a SQLite Database. This database shouldn't be unencrypted on my harddrive. So I want that on every start of my program.. Of course the database never should appear in clear not encrypted on my harddrive. So is there any possibility to decrypt a.. When it's not possible or very slow maybe it's better to encrypt every string in the database and decrypt the string when the..

How do I programatically collect packets from passively sniffing?

http://stackoverflow.com/questions/3798733/how-do-i-programatically-collect-packets-from-passively-sniffing

seeing what all is available Then I'll figure out a way to encrypt everything... but first things first. Any help on packet sniffing..

send RSA public key to iphone and use it to encrypt

http://stackoverflow.com/questions/4211484/send-rsa-public-key-to-iphone-and-use-it-to-encrypt

RSA public key to iphone and use it to encrypt I have a TCP socket server and I want to do the following w.. iphone and keep the private key. On client iphone want to encrypt a message using the public key using SecKeyEncrypt. On server.. this question This should do what you're asking it encrypts data with the server's public key. It's not subject to MITM..

How do I import an RSA Public Key from .NET into OpenSSL

http://stackoverflow.com/questions/497428/how-do-i-import-an-rsa-public-key-from-net-into-openssl

the public key from disk and use the OpenSSL library to encrypt the data with the public key and write that result to disk... that result to disk. Finally the .NET app will read the encrypted data and decrypt it with the private key. What is the best.. values will be loaded into an RSA key and then you can encrypt the plain text and write the cipher text to disk. Like this..

C/C++: How to do AES decryption using OpenSSL

http://stackoverflow.com/questions/5132939/c-c-how-to-do-aes-decryption-using-openssl

I believe take a numeric parm to differentiate between encryption and decryption. For example void AES_ecb_encrypt in out key.. encryption and decryption. For example void AES_ecb_encrypt in out key enc void AES_cbc_encrypt in out length key ivec enc.. example void AES_ecb_encrypt in out key enc void AES_cbc_encrypt in out length key ivec enc void AES_cfb128_encrypt in out length..

How do I enforce an expiration date for a trial install of my software?

http://stackoverflow.com/questions/5488249/how-do-i-enforce-an-expiration-date-for-a-trial-install-of-my-software

are written in C exes and dlls . I must be able to encrypt the C# code key the software to run only on a particular machine.. registry diving and enforce it through custom code c# c encryption installer trial share improve this question I've discovered..

Reading text from file to unsigned char array

http://stackoverflow.com/questions/6830936/reading-text-from-file-to-unsigned-char-array

to unsigned char array I was looking to use OpenSSL to encrypt text in a file and will need the text to be in an unsigned char.. need the text to be in an unsigned char array before I encrypt it. What is the easiest way read text from a file to an unsigned..

How to hide strings in a exe or a dll?

http://stackoverflow.com/questions/926172/how-to-hide-strings-in-a-exe-or-a-dll

can store the text in some other binary form hex . You can encrypt the strings that are stored in your app then decrypt them at.. in .Net 2.0 . The purpose being to keep the strings encrypted while the app is running. A fourth idea is to not store the..