summaryrefslogtreecommitdiff
path: root/lib/gnutls_rsa_export.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2003-08-07 18:01:45 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2003-08-07 18:01:45 +0000
commite9964513db0626bda7ade731b39c388514f653c2 (patch)
tree822bea73eff3248b3d0c14ca8f7a5c17ea60fb31 /lib/gnutls_rsa_export.c
parent2df1162fa6b6df695d2bd5d50f481c18783538f6 (diff)
downloadgnutls-e9964513db0626bda7ade731b39c388514f653c2.tar.gz
Ported to the new libgcrypt (still unstable). Also added the RC2 cipher and improved the PKCS #12 stuff in order to support it.
Diffstat (limited to 'lib/gnutls_rsa_export.c')
-rw-r--r--lib/gnutls_rsa_export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_rsa_export.c b/lib/gnutls_rsa_export.c
index 8ca1693348..c33dc7402a 100644
--- a/lib/gnutls_rsa_export.c
+++ b/lib/gnutls_rsa_export.c
@@ -58,7 +58,7 @@ int _gnutls_rsa_generate_params(GNUTLS_MPI* resarr, int bits)
{
int ret;
- GCRY_SEXP parms, key, list;
+ gcry_sexp_t parms, key, list;
ret = gcry_sexp_build( &parms, NULL, "(genkey(rsa(nbits %d)))", bits);
if (ret != 0) {