aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-02-20 09:31:54 -0500
committerJack Lloyd <[email protected]>2018-02-20 09:31:54 -0500
commita999868535ef9c9bf160650c32ce16a10d8a3e63 (patch)
tree40b1b1b8c7bc0c610cde9c095a151e578aa9b08f /src/cli
parent9a730019d5d9ea15671a59094ede4c729ac17047 (diff)
Support generating DSA groups in gen_dl_group CLI
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/pubkey.cpp30
1 files changed, 28 insertions, 2 deletions
diff --git a/src/cli/pubkey.cpp b/src/cli/pubkey.cpp
index 0e515d2ea..a2aded02b 100644
--- a/src/cli/pubkey.cpp
+++ b/src/cli/pubkey.cpp
@@ -10,6 +10,7 @@
#if defined(BOTAN_HAS_PUBLIC_KEY_CRYPTO)
#include <botan/base64.h>
+#include <botan/hex.h>
#include <botan/pk_keys.h>
#include <botan/x509_key.h>
@@ -393,7 +394,7 @@ BOTAN_REGISTER_COMMAND("dl_group_info", DL_Group_Info);
class Gen_DL_Group final : public Command
{
public:
- Gen_DL_Group() : Command("gen_dl_group --pbits=1024 --qbits=0 --type=subgroup") {}
+ Gen_DL_Group() : Command("gen_dl_group --pbits=1024 --qbits=0 --seed= --type=subgroup") {}
std::string group() const override
{
@@ -408,6 +409,7 @@ class Gen_DL_Group final : public Command
void go() override
{
const size_t pbits = get_arg_sz("pbits");
+ const size_t qbits = get_arg_sz("qbits");
const std::string type = get_arg("type");
@@ -418,7 +420,31 @@ class Gen_DL_Group final : public Command
}
else if(type == "subgroup")
{
- Botan::DL_Group grp(rng(), Botan::DL_Group::Prime_Subgroup, pbits, get_arg_sz("qbits"));
+ Botan::DL_Group grp(rng(), Botan::DL_Group::Prime_Subgroup, pbits, qbits);
+ output() << grp.PEM_encode(Botan::DL_Group::ANSI_X9_42);
+ }
+ else if(type == "dsa")
+ {
+ const std::string seed_str = get_arg("seed");
+ const std::vector<uint8_t> seed = Botan::hex_decode(seed_str);
+
+ if(seed.empty())
+ {
+ throw CLI_Usage_Error("Generating DSA parameter set requires providing seed");
+ }
+
+ size_t dsa_qbits = qbits;
+ if(dsa_qbits == 0)
+ {
+ if(pbits == 1024)
+ dsa_qbits = 160;
+ else if(pbits == 2048 || pbits == 3072)
+ dsa_qbits = 256;
+ else
+ throw CLI_Usage_Error("Invalid DSA p/q sizes");
+ }
+
+ Botan::DL_Group grp(rng(), seed, pbits, dsa_qbits);
output() << grp.PEM_encode(Botan::DL_Group::ANSI_X9_42);
}
else