1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-10 18:59:39 +02:00

Kotlin conversion: SignatureCheck

This commit is contained in:
Paul Schaub 2023-08-30 14:43:33 +02:00
parent 1a701333e3
commit 145555997c
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
2 changed files with 23 additions and 73 deletions

View file

@ -0,0 +1,23 @@
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.pgpainless.signature.consumer
import org.bouncycastle.openpgp.PGPKeyRing
import org.bouncycastle.openpgp.PGPSignature
import org.pgpainless.key.SubkeyIdentifier
/**
* Tuple-class which bundles together a signature, the signing key that created the signature,
* an identifier of the signing key and a record of whether the signature was verified.
*
* @param signature OpenPGP signature
* @param signingKeyIdentifier identifier pointing to the exact signing key which was used to create the signature
* @param signingKeyRing certificate or key ring that contains the signing key that created the signature
*/
data class SignatureCheck(
val signature: PGPSignature,
val signingKeyRing: PGPKeyRing,
val signingKeyIdentifier: SubkeyIdentifier) {
}