From: Niels Möller Date: Mon, 14 Jan 2002 01:57:57 +0000 (+0100) Subject: (struct rsa_private_key): Deleted public key and d from X-Git-Tag: nettle_1.5_release_20020131~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=010df2886c2197c0a8f311a3fdb05a00e1c73471;p=thirdparty%2Fnettle.git (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 --- diff --git a/rsa.h b/rsa.h index 295abc31..23ee7a7e 100644 --- a/rsa.h +++ b/rsa.h @@ -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;