1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-10 18:59:39 +02:00

Remove KeyRingUtils.removeSecretKey() in favor of stripSecretKey()

This commit is contained in:
Paul Schaub 2023-05-03 17:15:30 +02:00
parent 09bacd40d1
commit 7a194c517a
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
2 changed files with 1 additions and 25 deletions

View file

@ -83,7 +83,7 @@ public class CertificateWithMissingSecretKeyTest {
encryptionSubkeyId = PGPainless.inspectKeyRing(secretKeys)
.getEncryptionSubkeys(EncryptionPurpose.ANY).get(0).getKeyID();
// remove the encryption/decryption secret key
missingDecryptionSecKey = KeyRingUtils.removeSecretKey(secretKeys, encryptionSubkeyId);
missingDecryptionSecKey = KeyRingUtils.stripSecretKey(secretKeys, encryptionSubkeyId);
}
@Test