C # Encrypting files

2

I want to send files to friends but I want to make sure no one can see your content.

I would like an example to perform the encryption of the files in C #.

    
asked by anonymous 03.08.2016 / 14:11

1 answer

1

There are many solutions to this that you want to do, as the question is very vague, I will only pass the encryption part. One of the simplest is to use symmetric encryption, where you use the same key to encrypt and decrypt, the downside of this solution is that you must share this key with your friends in advance. Here is a tutorial I found in Portuguese.

link

But you can do something even simpler by doing zip compression with password only using libraries like link .

    
21.12.2016 / 17:02