2
I want to send files to friends but I want to make sure no one can see their content.
I would like an example to perform C file encryption#.
2
I want to send files to friends but I want to make sure no one can see their content.
I would like an example to perform C file encryption#.
1
There are many solutions for this that you want to do, as the question is very vague, I will pass only the encryption part. One of the simplest is to use symmetric encryption, where the same key is used to encrypt and decrypt, the downside of this solution is that you should share this key with your friends in advance. Here is a tutorial I found in English.
http://devbrasil.net/profiles/blogs/criptografia-em-c-aes
But you can do something even simpler by just doing a zip compression with password using libraries like: https://www.nuget.org/packages/DotNetZip/
Browser other questions tagged c# cryptography
You are not signed in. Login or sign up in order to post.
https://support.microsoft.com/pt-br/kb/307010 see if this example helps you
– Pablo Tondolo de Vargas
In this other example also http://answall.com/q/131443/5846
– Pablo Tondolo de Vargas
You managed to find the answer?
– sergioBertolazzo