Mercurial > dropbear
comparison keyimport.c @ 841:d4ce5269a439 ecc
Fix specifying a keysize for key generation, fix key name arguments
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 01 Nov 2013 00:13:09 +0800 |
parents | 75509065db53 |
children | 774ad9b112ef |
comparison
equal
deleted
inserted
replaced
840:5128e525c8fa | 841:d4ce5269a439 |
---|---|
772 != MP_OKAY) { | 772 != MP_OKAY) { |
773 errmsg = "Error parsing ECC key"; | 773 errmsg = "Error parsing ECC key"; |
774 goto error; | 774 goto error; |
775 } | 775 } |
776 | 776 |
777 *signkey_ecc_key_ptr(retkey, retkey->type) = ecc; | 777 *signkey_key_ptr(retkey, retkey->type) = ecc; |
778 } | 778 } |
779 #endif // DROPBEAR_ECDSA | 779 #endif // DROPBEAR_ECDSA |
780 | 780 |
781 /* | 781 /* |
782 * Now put together the actual key. Simplest way to do this is | 782 * Now put together the actual key. Simplest way to do this is |