Overload List

  NameDescription
Public methodCreateRevocationCertificateInFile(String, String, Byte, String, String)
Creates a key revocation certificate for a given OpenPGP key file and stores it in a file.

Key revocation certificates are especially useful if we have forgotten the pass phrase to our private key and we need some way to "disable" or revoke that key.

Equivalent GPG command:
gpg --gen-revoke [UserId] --output [outputFileName]
Public methodCreateRevocationCertificateInFile(KeyStore, Int64, String, Byte, String, String)
Creates a key revocation certificate for a given OpenPGP key located in a KeyStore and stores it in a file.

Key revocation certificates are especially useful if we have forgotten the pass phrase to our private key and we need some way to "disable" or revoke that key.

Equivalent GPG command:
gpg --gen-revoke [keyId] --output [outputFileName]
Public methodCreateRevocationCertificateInFile(KeyStore, String, String, Byte, String, String)
Creates a key revocation certificate for a given OpenPGP key located in a KeyStore and stores it in a file.

Key revocation certificates are especially useful if we have forgotten the pass phrase to our private key and we need some way to "disable" or revoke that key.

Equivalent GPG command:
gpg --gen-revoke [userId] --output [outputFileName]

See Also