mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-18 18:32:05 +01:00
Switch default S2K for secret key protection over to use SHA256 and add documentation
This commit is contained in:
parent
251bbaeaa7
commit
15046cdc32
2 changed files with 77 additions and 4 deletions
|
@ -9,18 +9,39 @@ import javax.annotation.Nonnull;
|
||||||
import org.pgpainless.algorithm.HashAlgorithm;
|
import org.pgpainless.algorithm.HashAlgorithm;
|
||||||
import org.pgpainless.algorithm.SymmetricKeyAlgorithm;
|
import org.pgpainless.algorithm.SymmetricKeyAlgorithm;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Secret key protection settings for iterated and salted S2K.
|
||||||
|
*/
|
||||||
public class KeyRingProtectionSettings {
|
public class KeyRingProtectionSettings {
|
||||||
|
|
||||||
private final SymmetricKeyAlgorithm encryptionAlgorithm;
|
private final SymmetricKeyAlgorithm encryptionAlgorithm;
|
||||||
private final HashAlgorithm hashAlgorithm;
|
private final HashAlgorithm hashAlgorithm;
|
||||||
private final int s2kCount;
|
private final int s2kCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a {@link KeyRingProtectionSettings} object using the given encryption algorithm, SHA1 and
|
||||||
|
* 65536 iterations.
|
||||||
|
*
|
||||||
|
* @param encryptionAlgorithm encryption algorithm
|
||||||
|
*/
|
||||||
public KeyRingProtectionSettings(@Nonnull SymmetricKeyAlgorithm encryptionAlgorithm) {
|
public KeyRingProtectionSettings(@Nonnull SymmetricKeyAlgorithm encryptionAlgorithm) {
|
||||||
this(encryptionAlgorithm, HashAlgorithm.SHA1, 0x60); // Same s2kCount as used in BC.
|
this(encryptionAlgorithm, HashAlgorithm.SHA1, 0x60); // Same s2kCount (encoded) as used in BC.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor for custom salted and iterated S2K protection settings.
|
||||||
|
* The salt gets randomly chosen by the library each time.
|
||||||
|
*
|
||||||
|
* Note, that the s2kCount is the already encoded single-octet number.
|
||||||
|
*
|
||||||
|
* @see <a href="https://www.rfc-editor.org/rfc/rfc4880#section-3.7.1.3">Encoding Formula</a>
|
||||||
|
*
|
||||||
|
* @param encryptionAlgorithm encryption algorithm
|
||||||
|
* @param hashAlgorithm hash algorithm
|
||||||
|
* @param s2kCount encoded s2k iteration count
|
||||||
|
*/
|
||||||
public KeyRingProtectionSettings(@Nonnull SymmetricKeyAlgorithm encryptionAlgorithm, @Nonnull HashAlgorithm hashAlgorithm, int s2kCount) {
|
public KeyRingProtectionSettings(@Nonnull SymmetricKeyAlgorithm encryptionAlgorithm, @Nonnull HashAlgorithm hashAlgorithm, int s2kCount) {
|
||||||
this.encryptionAlgorithm = encryptionAlgorithm;
|
this.encryptionAlgorithm = validateEncryptionAlgorithm(encryptionAlgorithm);
|
||||||
this.hashAlgorithm = hashAlgorithm;
|
this.hashAlgorithm = hashAlgorithm;
|
||||||
if (s2kCount < 1) {
|
if (s2kCount < 1) {
|
||||||
throw new IllegalArgumentException("s2kCount cannot be less than 1.");
|
throw new IllegalArgumentException("s2kCount cannot be less than 1.");
|
||||||
|
@ -28,18 +49,50 @@ public class KeyRingProtectionSettings {
|
||||||
this.s2kCount = s2kCount;
|
this.s2kCount = s2kCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static KeyRingProtectionSettings secureDefaultSettings() {
|
private static SymmetricKeyAlgorithm validateEncryptionAlgorithm(SymmetricKeyAlgorithm encryptionAlgorithm) {
|
||||||
return new KeyRingProtectionSettings(SymmetricKeyAlgorithm.AES_256);
|
switch (encryptionAlgorithm) {
|
||||||
|
case NULL:
|
||||||
|
throw new IllegalArgumentException("Unencrypted is not allowed here!");
|
||||||
|
default:
|
||||||
|
return encryptionAlgorithm;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Secure default settings using {@link SymmetricKeyAlgorithm#AES_256}, {@link HashAlgorithm#SHA256}
|
||||||
|
* and an iteration count of 65536.
|
||||||
|
*
|
||||||
|
* @return secure protection settings
|
||||||
|
*/
|
||||||
|
public static KeyRingProtectionSettings secureDefaultSettings() {
|
||||||
|
return new KeyRingProtectionSettings(SymmetricKeyAlgorithm.AES_256, HashAlgorithm.SHA256, 0x60);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the encryption algorithm.
|
||||||
|
*
|
||||||
|
* @return encryption algorithm
|
||||||
|
*/
|
||||||
public @Nonnull SymmetricKeyAlgorithm getEncryptionAlgorithm() {
|
public @Nonnull SymmetricKeyAlgorithm getEncryptionAlgorithm() {
|
||||||
return encryptionAlgorithm;
|
return encryptionAlgorithm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the hash algorithm.
|
||||||
|
*
|
||||||
|
* @return hash algorithm
|
||||||
|
*/
|
||||||
public @Nonnull HashAlgorithm getHashAlgorithm() {
|
public @Nonnull HashAlgorithm getHashAlgorithm() {
|
||||||
return hashAlgorithm;
|
return hashAlgorithm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the (encoded!) s2k iteration count.
|
||||||
|
*
|
||||||
|
* @see <a href="https://www.rfc-editor.org/rfc/rfc4880#section-3.7.1.3">Encoding Formula</a>
|
||||||
|
*
|
||||||
|
* @return encoded s2k count
|
||||||
|
*/
|
||||||
public int getS2kCount() {
|
public int getS2kCount() {
|
||||||
return s2kCount;
|
return s2kCount;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
package org.pgpainless.key.protection;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.pgpainless.algorithm.HashAlgorithm;
|
||||||
|
import org.pgpainless.algorithm.SymmetricKeyAlgorithm;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||||
|
|
||||||
|
public class InvalidProtectionSettingsTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void unencryptedKeyRingProtectionSettingsThrows() {
|
||||||
|
assertThrows(IllegalArgumentException.class, () ->
|
||||||
|
new KeyRingProtectionSettings(SymmetricKeyAlgorithm.NULL, HashAlgorithm.SHA256, 0x60));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue