(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
+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.
#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);
}
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);
}
int
-rsa_prepare_private_key(struct rsa_private_key *key)
+rsa_private_key_prepare(struct rsa_private_key *key)
{
/* FIXME: Add further sanity checks. */
* 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);
}
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);
}
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
/* 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 */