diff options
author | Gaël PORTAY <gael.portay@gmail.com> | 2015-05-02 13:59:41 +0200 |
---|---|---|
committer | Gaël PORTAY <gael.portay@gmail.com> | 2015-05-05 20:39:14 +0200 |
commit | 449ddae628ea23f8b1e7179ab3ff2c81cffa57a0 (patch) | |
tree | ea0d73683635308bff95cd84127d1afc4b88944b /ecc.h | |
parent | 6b90885d4f8699e8607481422a43ec72fa84f295 (diff) |
Turn dropbear_ecc_curve's name into const char *
Diffstat (limited to 'ecc.h')
-rw-r--r-- | ecc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ struct dropbear_ecc_curve { int ltc_size; /* to match the byte sizes in ltc_ecc_sets[] */ const ltc_ecc_set_type *dp; /* curve domain parameters */ const struct ltc_hash_descriptor *hash_desc; - const unsigned char *name; + const char *name; }; extern struct dropbear_ecc_curve ecc_curve_nistp256; |