Skip to content

Commit

Permalink
Add -G option to keyconv, to generate an address and display the hex
Browse files Browse the repository at this point in the history
public key.
  • Loading branch information
samr7 committed Jul 4, 2012
1 parent b6ca74f commit b60c5b1
Showing 1 changed file with 41 additions and 9 deletions.
50 changes: 41 additions & 9 deletions keyconv.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ usage(const char *progname)
fprintf(stderr,
"Vanitygen keyconv %s\n"
"Usage: %s [-8] [-e|-E <password>] [-c <key>] [<key>]\n"
"-G Generate a key pair and output the full public key\n"
"-8 Output key in PKCS#8 form\n"
"-e Encrypt output key, prompt for password\n"
"-E <password> Encrypt output key with <password> (UNSAFE)\n"
Expand All @@ -50,10 +51,11 @@ main(int argc, char **argv)
int pkcs8 = 0;
int pass_prompt = 0;
int verbose = 0;
int generate = 0;
int opt;
int res;

while ((opt = getopt(argc, argv, "8E:ec:v")) != -1) {
while ((opt = getopt(argc, argv, "8E:ec:vG")) != -1) {
switch (opt) {
case '8':
pkcs8 = 1;
Expand Down Expand Up @@ -81,12 +83,38 @@ main(int argc, char **argv)
case 'v':
verbose = 1;
break;
case 'G':
generate = 1;
break;
default:
usage(argv[0]);
return 1;
}
}

OpenSSL_add_all_algorithms();

pkey = EC_KEY_new_by_curve_name(NID_secp256k1);

if (generate) {
unsigned char *pend = (unsigned char *) pbuf;
addrtype = 0;
privtype = 128;
EC_KEY_generate_key(pkey);
res = i2o_ECPublicKey(pkey, &pend);
fprintf(stderr, "Pubkey (hex): ");
dumphex((unsigned char *)pbuf, res);
fprintf(stderr, "Privkey (hex): ");
dumpbn(EC_KEY_get0_private_key(pkey));
vg_encode_address(EC_KEY_get0_public_key(pkey),
EC_KEY_get0_group(pkey),
addrtype, ecprot);
printf("Address: %s\n", ecprot);
vg_encode_privkey(pkey, privtype, ecprot);
printf("Privkey: %s\n", ecprot);
return 0;
}

if (optind >= argc) {
res = fread(pbuf, 1, sizeof(pbuf) - 1, stdin);
pbuf[res] = '\0';
Expand All @@ -95,10 +123,6 @@ main(int argc, char **argv)
key_in = argv[optind];
}

OpenSSL_add_all_algorithms();

pkey = EC_KEY_new_by_curve_name(NID_secp256k1);

res = vg_decode_privkey_any(pkey, &privtype, key_in, NULL);
if (res < 0) {
if (EVP_read_pw_string(pwbuf, sizeof(pwbuf),
Expand All @@ -113,7 +137,8 @@ main(int argc, char **argv)
}

if (key2_in) {
BIGNUM bntmp;
BN_CTX *bnctx;
BIGNUM bntmp, bntmp2;
EC_KEY *pkey2;

pkey2 = EC_KEY_new_by_curve_name(NID_secp256k1);
Expand All @@ -131,12 +156,19 @@ main(int argc, char **argv)
return 1;
}
BN_init(&bntmp);
BN_add(&bntmp,
EC_KEY_get0_private_key(pkey),
EC_KEY_get0_private_key(pkey2));
BN_init(&bntmp2);
bnctx = BN_CTX_new();
EC_GROUP_get_order(EC_KEY_get0_group(pkey), &bntmp2, NULL);
BN_mod_add(&bntmp,
EC_KEY_get0_private_key(pkey),
EC_KEY_get0_private_key(pkey2),
&bntmp2,
bnctx);
vg_set_privkey(&bntmp, pkey);
EC_KEY_free(pkey2);
BN_clear_free(&bntmp);
BN_clear_free(&bntmp2);
BN_CTX_free(bnctx);
}

if (pass_prompt) {
Expand Down

1 comment on commit b60c5b1

@samadobrota
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.