文件名称:Encrypt
介绍说明--下载内容均来自于网络,请自行研究使用
What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the possible way is encrypting these files.Here a simple encryption technique is used(In VB - The same technique can be implemented in "c" also.) Program flow Explained * Open the File to be encrypted for Binary Access Read(Say Source File) * Open a temparory file where encrypted data is stored for Binary Access Write(Say Destination File) * Loop through the Source File Byte by Byte * For each byte read from the file, Complement the data. (Using Not operator (in C we have to use "~" operator) * Write Complemented Data to Destination File * Delete the Source File * Rename Destination file as Source File(Now Encryption is over) -What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the possible way is encrypting these files.Here a simple encryption technique is used (In VB- The same technique can be implemented in
(系统自动生成,下载前可以参看下载内容)
下载文件列表
To Code
.......\Application
.......\...........\EncryptApp.zip
.......\Read Me.txt
.......\Source
.......\......\EncryptCode.zip
.......\Application
.......\...........\EncryptApp.zip
.......\Read Me.txt
.......\Source
.......\......\EncryptCode.zip