diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-11-08 23:11:43 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-11-08 23:11:43 +0800 |
commit | 0162c116da2ce2d546cb6b6523b659d10f460d33 (patch) | |
tree | 3689163e79d631171074c9bc0b85660d7e903b4b /keyimport.c | |
parent | cfac8435a73cddbc54a70ab07418b0bdb900fc10 (diff) |
curve25519
--HG--
branch : ecc
Diffstat (limited to 'keyimport.c')
-rw-r--r-- | keyimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyimport.c b/keyimport.c index f3fe96a..660739e 100644 --- a/keyimport.c +++ b/keyimport.c @@ -1018,7 +1018,7 @@ static int openssh_write(const char *filename, sign_key *key, } */ buffer *seq_buf = buf_new(400); - ecc_key **eck = signkey_ecc_key_ptr(key, key->type); + ecc_key **eck = (ecc_key**)signkey_key_ptr(key, key->type); const unsigned long curve_size = (*eck)->dp->size; int curve_oid_len = 0; const void* curve_oid = NULL; |