Overload List
| Name | Description | |
|---|---|---|
| EncryptFilePBE(FileInfo, String, FileInfo, Boolean) |
Encrypts a file only with a passphrase. The same passphrase is used to decrypt the file. Equivalent GnuPG command: gpg -c -e [dataFileName] | |
| EncryptFilePBE(String, String, String, Boolean) |
Encrypts a file only with a passphrase. The same passphrase is used to decrypt the file. Equivalent GnuPG command: gpg -c -e [dataFileName] | |
| EncryptFilePBE(FileInfo, String, FileInfo, Boolean, Boolean) |
Encrypts a file only with a passphrase. The same passphrase is used to decrypt the file. Equivalent GnuPG command: gpg -c -e [dataFileName] | |
| EncryptFilePBE(String, String, String, Boolean, Boolean) |
Encrypts a file only with a passphrase. The same passphrase is used to decrypt the file. Equivalent GnuPG command: gpg -c -e [dataFileName] | |
| EncryptFilePBE(String, Stream, String, String, Boolean, Boolean) |
Encrypts a file with a public key and a passphrase. The passphrase can be used to decrypt the file if the corresponding private key is lost. Example GnuPG command: gpg -r [public key user id] -c -e [dataFileName] | |
| EncryptFilePBE(String, String, String, String, Boolean, Boolean) |
Encrypts a file with a public key and a passphrase. The passphrase can be used to decrypt the file if the corresponding private key is lost. Example GnuPG command: gpg -r [public key user id] -c -e [dataFileName] |