Uses of Class
org.eclipse.jgit.lib.GpgConfig
Packages that use GpgConfig
Package
Description
High-level API commands (the porcelain of JGit).
Core API for repository, config, refs, object database.
-
Uses of GpgConfig in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type GpgConfigModifier and TypeMethodDescriptionCommitCommand.setGpgConfig(GpgConfig config) Sets an externalGpgConfigto use.TagCommand.setGpgConfig(GpgConfig config) Sets an externalGpgConfigto use.VerifySignatureCommand.setGpgConfig(GpgConfig config) Sets an externalGpgConfigto use. -
Uses of GpgConfig in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type GpgConfigModifier and TypeMethodDescriptionbooleanSigner.canLocateSigningKey(Repository repository, GpgConfig config, PersonIdent committer, String signingKey, CredentialsProvider credentialsProvider) Indicates if a signing key is available for the specified committer and/or signing key.Signer.sign(Repository repository, GpgConfig config, byte[] data, PersonIdent committer, String signingKey, CredentialsProvider credentialsProvider) Signs arbitrary data.default voidSigner.signObject(Repository repository, GpgConfig config, ObjectBuilder object, PersonIdent committer, String signingKey, CredentialsProvider credentialsProvider) Signs the specified object.SignatureVerifier.verify(Repository repository, GpgConfig config, byte[] data, byte[] signatureData) Verifies a given signature for given data.SignatureVerifiers.verify(Repository repository, GpgConfig config, byte[] data, byte[] signature) Verifies a given signature for some give data.SignatureVerifiers.verify(Repository repository, GpgConfig config, RevObject object) Verifies the signature on a signed commit or tag.