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

* rsa-sign.c (rsa_private_key_init, rsa_private_key_clear)

(rsa_private_key_prepare): Renamed functions.

* rsa.c (rsa_public_key_init, rsa_public_key_clear)
(rsa_public_key_prepare): Renamed functions.

Rev: src/nettle/NEWS:1.9
Rev: src/nettle/rsa-sign.c:1.2
Rev: src/nettle/rsa.c:1.11
Rev: src/nettle/rsa.h:1.19
parent 5fd00505
No related branches found
No related tags found
No related merge requests found
NEWS for the 1.7 release
Renamed rsa functions for consistency. Now it's
rsa_public_key_init, not rsa_init_public_key, etc.
NEWS for the 1.6 release
Optimized assembler implementations of aes, for sparc and x86.
......
......@@ -34,7 +34,7 @@
#include "bignum.h"
void
rsa_init_private_key(struct rsa_private_key *key)
rsa_private_key_init(struct rsa_private_key *key)
{
mpz_init(key->d);
mpz_init(key->p);
......@@ -49,7 +49,7 @@ rsa_init_private_key(struct rsa_private_key *key)
}
void
rsa_clear_private_key(struct rsa_private_key *key)
rsa_private_key_clear(struct rsa_private_key *key)
{
mpz_clear(key->d);
mpz_clear(key->p);
......@@ -60,7 +60,7 @@ rsa_clear_private_key(struct rsa_private_key *key)
}
int
rsa_prepare_private_key(struct rsa_private_key *key)
rsa_private_key_prepare(struct rsa_private_key *key)
{
/* FIXME: Add further sanity checks. */
......
......@@ -38,7 +38,7 @@
* verify functions. */
void
rsa_init_public_key(struct rsa_public_key *key)
rsa_public_key_init(struct rsa_public_key *key)
{
mpz_init(key->n);
mpz_init(key->e);
......@@ -49,7 +49,7 @@ rsa_init_public_key(struct rsa_public_key *key)
}
void
rsa_clear_public_key(struct rsa_public_key *key)
rsa_public_key_clear(struct rsa_public_key *key)
{
mpz_clear(key->n);
mpz_clear(key->e);
......@@ -71,7 +71,7 @@ _rsa_check_size(mpz_t n)
}
int
rsa_prepare_public_key(struct rsa_public_key *key)
rsa_public_key_prepare(struct rsa_public_key *key)
{
/* FIXME: Add further sanity checks, like 0 < e < n. */
#if 0
......
......@@ -110,25 +110,25 @@ struct rsa_private_key
/* Calls mpz_init to initialize bignum storage. */
void
rsa_init_public_key(struct rsa_public_key *key);
rsa_public_key_init(struct rsa_public_key *key);
/* Calls mpz_clear to deallocate bignum storage. */
void
rsa_clear_public_key(struct rsa_public_key *key);
rsa_public_key_clear(struct rsa_public_key *key);
int
rsa_prepare_public_key(struct rsa_public_key *key);
rsa_public_key_prepare(struct rsa_public_key *key);
/* Calls mpz_init to initialize bignum storage. */
void
rsa_init_private_key(struct rsa_private_key *key);
rsa_private_key_init(struct rsa_private_key *key);
/* Calls mpz_clear to deallocate bignum storage. */
void
rsa_clear_private_key(struct rsa_private_key *key);
rsa_private_key_clear(struct rsa_private_key *key);
int
rsa_prepare_private_key(struct rsa_private_key *key);
rsa_private_key_prepare(struct rsa_private_key *key);
/* PKCS#1 style signatures */
......
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