aboutsummaryrefslogtreecommitdiff
path: root/rsa.c
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2016-03-29 16:50:10 -0400
committerPaul Selkirk <paul@psgd.org>2016-03-29 16:50:10 -0400
commit6cd42920fee5d3e4d0dcd5e1e798d5d4d6708e1b (patch)
tree3e5c1658e130302f3c776c847ba70150d7bdc0fb /rsa.c
parent438b50688ca6e4acd641ab568adb66f18fdd362e (diff)
Client-side rsa and ecdsa need to call remote get_random.
Diffstat (limited to 'rsa.c')
-rw-r--r--rsa.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/rsa.c b/rsa.c
index b257604..bf52e8a 100644
--- a/rsa.c
+++ b/rsa.c
@@ -86,6 +86,10 @@
#define HAL_RSA_USE_MODEXP 1
#endif
+#ifdef RPC_CLIENT
+#define hal_get_random(core, buffer, length) hal_rpc_get_random(buffer, length)
+#endif
+
/*
* Whether we want debug output.
*/