mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-23 11:27:57 +01:00
Make defaultDigestHashAlgorithm static
This commit is contained in:
parent
dd941fb293
commit
6467217bd1
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public class SecretKeyRingEditor implements SecretKeyRingEditorInterface {
|
|||
// Default algorithm for calculating private key checksums
|
||||
// While I'd like to use something else, eg. SHA256, BC seems to lack support for
|
||||
// calculating secret key checksums with algorithms other than SHA1.
|
||||
private final HashAlgorithm defaultDigestHashAlgorithm = HashAlgorithm.SHA1;
|
||||
private static final HashAlgorithm defaultDigestHashAlgorithm = HashAlgorithm.SHA1;
|
||||
|
||||
private PGPSecretKeyRing secretKeyRing;
|
||||
|
||||
|
|
Loading…
Reference in a new issue