mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-17 18:02:05 +01:00
Add EncryptionOptions.get() factory method
This commit is contained in:
parent
d1001412a1
commit
5746985bb7
1 changed files with 13 additions and 0 deletions
|
@ -80,6 +80,19 @@ public class EncryptionOptions {
|
||||||
this.purpose = purpose;
|
this.purpose = purpose;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Factory method to create an {@link EncryptionOptions} object which will encrypt for keys
|
||||||
|
* which carry either the {@link org.pgpainless.algorithm.KeyFlag#ENCRYPT_COMMS} or
|
||||||
|
* {@link org.pgpainless.algorithm.KeyFlag#ENCRYPT_STORAGE} flag.
|
||||||
|
*
|
||||||
|
* Use this if you are not sure.
|
||||||
|
*
|
||||||
|
* @return encryption options
|
||||||
|
*/
|
||||||
|
public static EncryptionOptions get() {
|
||||||
|
return new EncryptionOptions();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Factory method to create an {@link EncryptionOptions} object which will encrypt for keys
|
* Factory method to create an {@link EncryptionOptions} object which will encrypt for keys
|
||||||
* which carry the flag {@link org.pgpainless.algorithm.KeyFlag#ENCRYPT_COMMS}.
|
* which carry the flag {@link org.pgpainless.algorithm.KeyFlag#ENCRYPT_COMMS}.
|
||||||
|
|
Loading…
Reference in a new issue