Need Data Encryption Advice
-
Greetings: I need to encrypt some data in a file that is quite small, in most cases, less than 300 bytes. I just need something simple: Provide the function with a key and a block of data to encrypt and it returns with the block of data encrypted. A similar function to decrypt is needed, of course. Can anybody suggest something? I would prefer it be a C++ thing. Thanks in advance, Mark
-
Greetings: I need to encrypt some data in a file that is quite small, in most cases, less than 300 bytes. I just need something simple: Provide the function with a key and a block of data to encrypt and it returns with the block of data encrypted. A similar function to decrypt is needed, of course. Can anybody suggest something? I would prefer it be a C++ thing. Thanks in advance, Mark
Jethro63 wrote:
Can anybody suggest something?
Have you tried searching CP? Here is but one example.
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
-
Greetings: I need to encrypt some data in a file that is quite small, in most cases, less than 300 bytes. I just need something simple: Provide the function with a key and a block of data to encrypt and it returns with the block of data encrypted. A similar function to decrypt is needed, of course. Can anybody suggest something? I would prefer it be a C++ thing. Thanks in advance, Mark
They hide that information in the documentation[^] There are wrappers in ATL[^]
led mike
-
Jethro63 wrote:
Can anybody suggest something?
Have you tried searching CP? Here is but one example.
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
-
Greetings: I need to encrypt some data in a file that is quite small, in most cases, less than 300 bytes. I just need something simple: Provide the function with a key and a block of data to encrypt and it returns with the block of data encrypted. A similar function to decrypt is needed, of course. Can anybody suggest something? I would prefer it be a C++ thing. Thanks in advance, Mark