Overload List

  NameDescription
Public methodEncryptFilePBE(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]
Public methodEncryptFilePBE(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]
Public methodEncryptFilePBE(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]
Public methodEncryptFilePBE(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]
Public methodEncryptFilePBE(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]
Public methodEncryptFilePBE(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]

See Also