1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-22 20:32:05 +01:00

Add some clarifying comments to GenerateKeyImpl

This commit is contained in:
Paul Schaub 2023-04-17 14:51:50 +02:00
parent 702fdf085c
commit 6371485929
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -63,13 +63,16 @@ public class GenerateKeyImpl implements GenerateKey {
@Override
public GenerateKey profile(String profileName) {
// Sanitize the profile name to make sure we support the given profile
for (Profile profile : SUPPORTED_PROFILES) {
if (profile.getName().equals(profileName)) {
this.profile = profileName;
// return if we found the profile
return this;
}
}
// profile not found, throw
throw new SOPGPException.UnsupportedProfile("generate-key", profileName);
}
@ -126,6 +129,7 @@ public class GenerateKeyImpl implements GenerateKey {
.simpleRsaKeyRing(primaryUserId, RsaLength._4096, passphrase);
}
else {
// Missing else-if branch for profile. Oops.
throw new SOPGPException.UnsupportedProfile("generate-key", profile);
}
return key;