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
1 changed files with 4 additions and 0 deletions

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;