Skip to content
Snippets Groups Projects
Commit 010df288 authored by Niels Möller's avatar Niels Möller
Browse files

(struct rsa_private_key): Deleted public key and d from

the struct, as they are not needed. Added size attribute.

Rev: src/nettle/rsa.h:1.6
parent f9e3fbf9
No related branches found
No related tags found
No related merge requests found
......@@ -47,11 +47,8 @@ struct rsa_public_key
struct rsa_private_key
{
struct rsa_public_key pub;
unsigned size;
/* Secret exponent */
mpz_t d;
/* The two factors */
mpz_t p; mpz_t q;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment