@"C:\Test\public_key.asc"
手動入力から openfiledialog の使用に変更する方法を知っている人はいますか?
コードの下にこの赤いジザグ線があり、マウスを上に置くと、System.IO.FileInfoをSystem.IO.Streamに変換できないと表示されます。
using System.IO;
using DidiSoft.Pgp;
class EncryptDemo {
public void Demo() {
// create an instance of the library
PGPLib pgp = new PGPLib();
// specify should the output be ASCII or binary
bool asciiArmor = false;
// should additional integrity information be added
// set to false for compatibility with older versions of PGP such as 6.5.8.
bool withIntegrityCheck = false;
pgp.EncryptFile(@"C:\Test\INPUT.txt",
@"C:\Test\public_key.asc",
@"C:\Test\OUTPUT.pgp",
asciiArmor,
withIntegrityCheck);
}
}
以下は、ファイルを選択するためのダイアログ ボックスが開かないため、あまり役に立ちません。
bool asciiArmor = false;
bool withIntegrityCheck = false;
using (var publickey = new FileStream(openFileDialog1.FileName, FileMode.Open))
{
pgp.EncryptFile(@attachmentTextBox.Text, publickey, @"C:\OUTPUT.pgp", asciiArmor, withIntegrityCheck);
}