mirror of
https://github.com/ipxe/ipxe
synced 2025-12-15 09:04:37 +03:00
[crypto] Expose RSA_CTX_SIZE constant
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -625,7 +625,7 @@ static int rsa_match ( const void *private_key, size_t private_key_len,
|
||||
/** RSA public-key algorithm */
|
||||
struct pubkey_algorithm rsa_algorithm = {
|
||||
.name = "rsa",
|
||||
.ctxsize = sizeof ( struct rsa_context ),
|
||||
.ctxsize = RSA_CTX_SIZE,
|
||||
.init = rsa_init,
|
||||
.max_len = rsa_max_len,
|
||||
.encrypt = rsa_encrypt,
|
||||
|
||||
@@ -77,6 +77,9 @@ struct rsa_context {
|
||||
void *tmp;
|
||||
};
|
||||
|
||||
/** RSA context size */
|
||||
#define RSA_CTX_SIZE sizeof ( struct rsa_context )
|
||||
|
||||
extern struct pubkey_algorithm rsa_algorithm;
|
||||
|
||||
#endif /* _IPXE_RSA_H */
|
||||
|
||||
Reference in New Issue
Block a user