diff options
author | Werner Koch <wk@gnupg.org> | 2011-01-31 09:27:06 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2011-01-31 09:27:06 +0100 |
commit | 0fb0bb8d9a960a2473ab70a021d20639a43227e0 (patch) | |
tree | 8dcce4f17931a3da45890db635a6474231224db0 /g10/pkglue.h | |
parent | Update gitignore (diff) | |
download | gnupg2-0fb0bb8d9a960a2473ab70a021d20639a43227e0.tar.xz gnupg2-0fb0bb8d9a960a2473ab70a021d20639a43227e0.zip |
Reworked the ECC changes to better fit into the Libgcrypt API.
See ChangeLog for details. Key generation, signing and verification works.
Encryption does not yet work. Requires latest Libgcrypt changes.
Diffstat (limited to '')
-rw-r--r-- | g10/pkglue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/pkglue.h b/g10/pkglue.h index 98d8c1440..eb0d7c1dc 100644 --- a/g10/pkglue.h +++ b/g10/pkglue.h @@ -32,7 +32,7 @@ int pk_check_secret_key (int algo, gcry_mpi_t *skey); /*-- ecdh.c --*/ -byte *pk_ecdh_default_params (unsigned int qbits, size_t *sizeout); +gcry_mpi_t pk_ecdh_default_params (unsigned int qbits); gpg_error_t pk_ecdh_generate_ephemeral_key (gcry_mpi_t *pkey, gcry_mpi_t *r_k); gpg_error_t pk_ecdh_encrypt_with_shared_point /* */ (int is_encrypt, gcry_mpi_t shared_mpi, |