mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-18 02:12:06 +01:00
Add missing javadoc to CustomPublicKeyDataDecryptorFactory
This commit is contained in:
parent
41cc71c274
commit
980daeca31
1 changed files with 13 additions and 0 deletions
|
@ -7,8 +7,21 @@ 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…
Reference in a new issue