summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/rsa.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ipxe/rsa.h')
-rw-r--r--src/include/ipxe/rsa.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ipxe/rsa.h b/src/include/ipxe/rsa.h
index e70362ce7..87e75a82f 100644
--- a/src/include/ipxe/rsa.h
+++ b/src/include/ipxe/rsa.h
@@ -129,6 +129,8 @@ struct rsa_context {
bigint_element_t *input0;
/** Output buffer */
bigint_element_t *output0;
+ /** Temporary working space for modular exponentiation */
+ void *tmp;
};
extern struct pubkey_algorithm rsa_algorithm;