summaryrefslogtreecommitdiffhomepage
path: root/ecdsa.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-04-28 23:17:43 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-04-28 23:17:43 +0800
commit79660f2eb1c64bcac9ba0084f9d3822ee88dbd5c (patch)
tree3a5e25381d08d23b881300c9d5c58c8ac439ea29 /ecdsa.c
parent5c87c6a435ab1791294c412abe32aa629b42fdc7 (diff)
more ecdsa signkey work, not correct
--HG-- branch : ecc
Diffstat (limited to 'ecdsa.c')
-rw-r--r--ecdsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecdsa.c b/ecdsa.c
index 2f92b12..360f988 100644
--- a/ecdsa.c
+++ b/ecdsa.c
@@ -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: