summaryrefslogtreecommitdiff
path: root/rsa-encrypt.c
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2002-10-09 21:32:44 +0200
committerNiels Möller <nisse@lysator.liu.se>2002-10-09 21:32:44 +0200
commit6322f02baa9d09fa1b292a7136ddc5bdb9f50879 (patch)
tree8e120e4116178fd62031ced4e721e5c14e6a111a /rsa-encrypt.c
parent5ee81e7ebb5c6ccabf119eb4b7c6508bb8099d41 (diff)
downloadnettle-6322f02baa9d09fa1b292a7136ddc5bdb9f50879.tar.gz
* rsa-decrypt.c (rsa_decrypt): Constification.
* rsa-encrypt.c (rsa_encrypt): Likewise. * rsa.c (rsa_compute_root): Likewise. * rsa_md5.c (rsa_md5_sign): Likewise. (rsa_md5_verify): Likewise. * rsa_sha1.c (rsa_sha1_sign): Likewise. (rsa_sha1_verify): Likewise. Rev: src/nettle/rsa-decrypt.c:1.2 Rev: src/nettle/rsa-encrypt.c:1.2 Rev: src/nettle/rsa.c:1.9 Rev: src/nettle/rsa.h:1.15 Rev: src/nettle/rsa_md5.c:1.6 Rev: src/nettle/rsa_sha1.c:1.6
Diffstat (limited to 'rsa-encrypt.c')
-rw-r--r--rsa-encrypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa-encrypt.c b/rsa-encrypt.c
index 162bcd9b..285f974d 100644
--- a/rsa-encrypt.c
+++ b/rsa-encrypt.c
@@ -32,7 +32,7 @@
#include <string.h>
int
-rsa_encrypt(struct rsa_public_key *key,
+rsa_encrypt(const struct rsa_public_key *key,
/* For padding */
void *random_ctx, nettle_random_func random,
unsigned length, const uint8_t *message,