This article explains how to Encrypt and Decrypt a file in C#.
The File class provides the Encrypt and the Decrypt methods to restrict other users to open and read a file.
Encrypt a File in C#
The Encrypt method encrypts a file so that only the account used to encrypt the file can decrypt it.
Decrypt a File in C#
The Decrypt method decrypts an encrypted file. Only account that has encrypted a file can decrypt a file.
The File class provides the Encrypt and the Decrypt methods to restrict other users to open and read a file.
Encrypt a File in C#
The Encrypt method encrypts a file so that only the account used to encrypt the file can decrypt it.
string fileName = @"c:\temp\vepsh.txt"; File.Encrypt(fileName);
Decrypt a File in C#
The Decrypt method decrypts an encrypted file. Only account that has encrypted a file can decrypt a file.
string fileName = @"c:\temp\vepsh.txt"; File.Decrypt(fileName);
thanks for sharing the post of encryption and decryption files in asp.net.
ReplyDeleteasp.net training in jaipur
thanks for your appreciation
Delete