diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-04-28 23:17:43 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-04-28 23:17:43 +0800 |
commit | 79660f2eb1c64bcac9ba0084f9d3822ee88dbd5c (patch) | |
tree | 3a5e25381d08d23b881300c9d5c58c8ac439ea29 /ecdsa.c | |
parent | 5c87c6a435ab1791294c412abe32aa629b42fdc7 (diff) |
more ecdsa signkey work, not correct
--HG--
branch : ecc
Diffstat (limited to 'ecdsa.c')
-rw-r--r-- | ecdsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,3 +1,4 @@ +#include "options.h" #include "includes.h" #include "dbutil.h" #include "crypto_desc.h" @@ -8,7 +9,6 @@ ecc_key *gen_ecdsa_priv_key(unsigned int bit_size) { const ltc_ecc_set_type *dp = NULL; // curve domain parameters - // TODO: use raw bytes for the dp rather than the hex strings in libtomcrypt's ecc.c switch (bit_size) { #ifdef DROPBEAR_ECC_256 case 256: |