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

Kotlin conversion: OnePassSignatureCheck

This commit is contained in:
Paul Schaub 2023-08-30 15:14:21 +02:00
parent 145555997c
commit 8d67820f50
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
2 changed files with 33 additions and 72 deletions

View file

@ -0,0 +1,33 @@
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.pgpainless.signature.consumer
import org.bouncycastle.openpgp.PGPOnePassSignature
import org.bouncycastle.openpgp.PGPPublicKeyRing
import org.bouncycastle.openpgp.PGPSignature
import org.pgpainless.key.SubkeyIdentifier
/**
* Tuple-class that bundles together a [PGPOnePassSignature] object, a [PGPPublicKeyRing]
* destined to verify the signature, the [PGPSignature] itself and a record of whether the signature
* was verified.
*
* @param onePassSignature the one-pass-signature packet
* @param verificationKeys certificate containing the signing subkey
* @param signature the signature packet
*/
data class OnePassSignatureCheck(
val onePassSignature: PGPOnePassSignature,
val verificationKeys: PGPPublicKeyRing,
var signature: PGPSignature? = null) {
/**
* Return an identifier for the signing key.
*
* @return signing key fingerprint
*/
val signingKey: SubkeyIdentifier
get() = SubkeyIdentifier(verificationKeys, onePassSignature.keyID)
}