I m 刚刚开始使用视觉基础。 NET和Im目前 st在以下问题上:,我怎么能够把带有不对称加密的档案放在加密/加密上?
基本上,我试图说明我如何能够在VB书写以下假装:
Function EncryptFile(path_to_file_to_encrypt, public_key)
file = ReadFile(path_to_file_to_encrypt)
encrypted_file = Encrypt(file, public_key)
SaveToDisk(encrypted_file, "C:Encryptedencryptedfile.xxx")
End Function
Function DecryptFile(path_to_encrypted_file, private_key)
encrypted_file = ReadFile(path_to_encrypted_file)
file = Decrypt(file, private_key)
SaveToDisk(file, "C:Decryptedfile.xxx")
End Function
文档Im 加密/加密是查询数据库档案(即双轨),如果发生任何变化。
我知道有私人钥匙的集装箱,但是,它像MSDN tutorial一样,足以说明这一点。 我认为,我很难把我守则中的公用钥匙编码(它赢得的 t正在变化)。
感谢任何帮助!