pgpainless/pgpainless-sop/src/main/java/org/pgpainless/sop/commands/GenerateKey.java

40 lines
1.3 KiB
Java
Raw Normal View History

2020-11-26 11:00:48 +01:00
package org.pgpainless.sop.commands;
import java.io.IOException;
import java.security.InvalidAlgorithmParameterException;
import java.security.NoSuchAlgorithmException;
import org.bouncycastle.openpgp.PGPException;
import org.bouncycastle.openpgp.PGPSecretKeyRing;
import org.pgpainless.PGPainless;
import org.pgpainless.sop.Print;
import org.pgpainless.util.ArmorUtils;
import picocli.CommandLine;
@CommandLine.Command(name = "generate-key")
public class GenerateKey implements Runnable {
@CommandLine.Option(names = {"--armor"}, description = "ASCII Armor the output")
boolean armor = false;
@CommandLine.Option(names = {"--no-armor"}, description = "Non-armored, binary output")
2020-11-26 11:00:48 +01:00
boolean noArmor = false;
@CommandLine.Parameters(description = "User-ID, eg. \"Alice <alice@example.com>\"")
2020-11-26 11:00:48 +01:00
String userId;
@Override
public void run() {
try {
2020-12-16 16:09:16 +01:00
PGPSecretKeyRing secretKeys = PGPainless.generateKeyRing().simpleEcKeyRing(userId);
2020-11-26 11:00:48 +01:00
System.out.println(Print.toString(secretKeys.getEncoded(), !noArmor));
} catch (InvalidAlgorithmParameterException | NoSuchAlgorithmException | PGPException | IOException e) {
System.err.println("Error creating OpenPGP key:");
System.err.println(e.getMessage());
System.exit(1);
}
}
}