diff options
author | Rob Austein <sra@hactrn.net> | 2017-03-02 20:32:18 -0500 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2017-03-02 20:32:18 -0500 |
commit | c2f499e0a301d4ad0f92d58f436d01087ceae1bb (patch) | |
tree | e7d2e4c6e7165c74420fa8b9a91565e926015dbe | |
parent | 9afc5d0b081983779439aa6f91781efb3e56d01d (diff) |
Fix dumb copy/paste errors.
-rw-r--r-- | ecdsa.c | 10 | ||||
-rw-r--r-- | hal.h | 4 |
2 files changed, 7 insertions, 7 deletions
@@ -856,7 +856,7 @@ static inline hal_error_t verilog_p256_point_pick_random(fp_int *k, ec_point_t * { #if HAL_ECDSA_VERILOG_ECDSA256_MULTIPLIER - static const verilog_ecdsa_driver_t verilog_p256_driver = { + static const verilog_ecdsa_driver_t p256_driver = { .name = ECDSA256_NAME, .bytes = ECDSA256_OPERAND_BITS / 8, .k_addr = ECDSA256_ADDR_K, @@ -865,7 +865,7 @@ static inline hal_error_t verilog_p256_point_pick_random(fp_int *k, ec_point_t * }; if (verilog_ecdsa256_multiplier) - return verilog_point_pick_random(&verilog_p256_driver, k, P); + return verilog_point_pick_random(&p256_driver, k, P); #endif @@ -876,7 +876,7 @@ static inline hal_error_t verilog_p384_point_pick_random(fp_int *k, ec_point_t * { #if HAL_ECDSA_VERILOG_ECDSA384_MULTIPLIER - static const verilog_ecdsa_driver_t verilog_p384_driver = { + static const verilog_ecdsa_driver_t p384_driver = { .name = ECDSA384_NAME, .bytes = ECDSA384_OPERAND_BITS / 8, .k_addr = ECDSA384_ADDR_K, @@ -884,8 +884,8 @@ static inline hal_error_t verilog_p384_point_pick_random(fp_int *k, ec_point_t * .y_addr = ECDSA384_ADDR_Y }; - if (verilog_ecdsa256_multiplier) - return verilog_point_pick_random(&verilog_p256_driver, k, P); + if (verilog_ecdsa384_multiplier) + return verilog_point_pick_random(&p384_driver, k, P); #endif @@ -106,8 +106,8 @@ #define ECDSA256_NAME "ecdsa256" #define ECDSA256_VERSION "0.11" -#define ECDSA256_NAME "ecdsa384" -#define ECDSA256_VERSION "0.11" +#define ECDSA384_NAME "ecdsa384" +#define ECDSA384_VERSION "0.11" /* * C API error codes. Defined in this form so we can keep the tokens |