summaryrefslogtreecommitdiffhomepage
path: root/ecdsa.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-05-09 23:25:39 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-05-09 23:25:39 +0800
commitb46d46667fd1f9b93f237fc0b054425609bd717d (patch)
tree4e17e29ce172c0def14ddbd715264dd47a5c2e09 /ecdsa.h
parent916cfa6b830f5862d036448ce7b26398d87253b4 (diff)
parent226671b5508afb147cad40d5cd8f90e1cbb2c24e (diff)
merge
--HG-- branch : ecc
Diffstat (limited to 'ecdsa.h')
-rw-r--r--ecdsa.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/ecdsa.h b/ecdsa.h
index db4ae18..84e4000 100644
--- a/ecdsa.h
+++ b/ecdsa.h
@@ -5,6 +5,8 @@
#include "buffer.h"
#include "signkey.h"
+#ifdef DROPBEAR_ECDSA
+
#ifdef DROPBEAR_ECC_256
#define ECDSA_DEFAULT_SIZE 256
#elif DROPBEAR_ECC_384
@@ -25,4 +27,6 @@ enum signkey_type ecdsa_signkey_type(ecc_key * key);
void buf_put_ecdsa_sign(buffer *buf, ecc_key *key, buffer *data_buf);
int buf_ecdsa_verify(buffer *buf, ecc_key *key, buffer *data_buf);
-#endif // _ECDSA_H_ \ No newline at end of file
+#endif
+
+#endif // _ECDSA_H_