mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-19 02:42:05 +01:00
Add javadoc to ProducerOptions.noEncryptionNoSigning()
This commit is contained in:
parent
9b6d08f3c5
commit
e67d5b405c
1 changed files with 6 additions and 0 deletions
|
@ -69,6 +69,12 @@ public final class ProducerOptions {
|
|||
return new ProducerOptions(encryptionOptions, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Only wrap the data in an OpenPGP packet.
|
||||
* No encryption or signing will be applied.
|
||||
*
|
||||
* @return builder
|
||||
*/
|
||||
public static ProducerOptions noEncryptionNoSigning() {
|
||||
return new ProducerOptions(null, null);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue