aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2015-09-08 15:54:40 -0400
committerRob Austein <sra@hactrn.net>2015-09-08 15:54:40 -0400
commite946b4661607736f1b89a7a107729382cb85fd55 (patch)
tree992a1b76109d22b87edea8fd07df07371440e389 /tests
parent12fd92723d71325b74a6c94eee4ca504773ad9da (diff)
parent5106b886fe0d8af948bf28be2a571c247afc6020 (diff)
Merge branch 'master' into ecdsa
This required a bit of manual cleanup in hal.h, hash.c, and rsa.c. No intended changes to functionality provided by parent comments, just a few tweaks to track API changes beyond git's ken.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-rsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-rsa.c b/tests/test-rsa.c
index 0751189..46afa03 100644
--- a/tests/test-rsa.c
+++ b/tests/test-rsa.c
@@ -287,8 +287,8 @@ int main(int argc, char *argv[])
* Initialize EIM and report what core we're running.
*/
- if ((err = hal_io_read(MODEXP_ADDR_NAME0, name, sizeof(name))) != HAL_OK ||
- (err = hal_io_read(MODEXP_ADDR_VERSION, version, sizeof(version))) != HAL_OK) {
+ if ((err = hal_io_read(MODEXPS6_ADDR_NAME0, name, sizeof(name))) != HAL_OK ||
+ (err = hal_io_read(MODEXPS6_ADDR_VERSION, version, sizeof(version))) != HAL_OK) {
printf("Initialization failed: %s\n", hal_error_string(err));
return 1;
}