mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-12-12 15:21:08 +01:00
Kotlin conversion: CustomPublicKeyDataDecryptorFactory
This commit is contained in:
parent
d8df6c35d0
commit
3115e13bc2
2 changed files with 26 additions and 27 deletions
|
|
@ -1,27 +0,0 @@
|
|||
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
//
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package org.pgpainless.decryption_verification;
|
||||
|
||||
import org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory;
|
||||
import org.pgpainless.key.SubkeyIdentifier;
|
||||
|
||||
/**
|
||||
* Custom {@link PublicKeyDataDecryptorFactory} which can enable customized implementations of message decryption
|
||||
* using public keys.
|
||||
* This class can for example be used to implement message encryption using hardware tokens like smartcards or
|
||||
* TPMs.
|
||||
* @see ConsumerOptions#addCustomDecryptorFactory(CustomPublicKeyDataDecryptorFactory)
|
||||
*/
|
||||
public interface CustomPublicKeyDataDecryptorFactory extends PublicKeyDataDecryptorFactory {
|
||||
|
||||
/**
|
||||
* Return the {@link SubkeyIdentifier} for which this particular {@link CustomPublicKeyDataDecryptorFactory}
|
||||
* is intended.
|
||||
*
|
||||
* @return subkey identifier
|
||||
*/
|
||||
SubkeyIdentifier getSubkeyIdentifier();
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue