summaryrefslogtreecommitdiff
path: root/lib/mpi.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2017-04-05 10:11:01 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2017-04-05 11:40:50 +0200
commit27a049382d20359dc1689d826b7975f47f6d988e (patch)
tree97e87442fe70cec19fdedc3a6e5c6c63e4109088 /lib/mpi.h
parent5fd52ca3c81bb6f82d0d69e961ab725f3b33b36f (diff)
downloadgnutls-27a049382d20359dc1689d826b7975f47f6d988e.tar.gz
mpi: openpgp integer scanning was put into conditional
That is, no longer include that code when compiling without openpgp support. Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/mpi.h')
-rw-r--r--lib/mpi.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/mpi.h b/lib/mpi.h
index c7533673ac..177c0480e7 100644
--- a/lib/mpi.h
+++ b/lib/mpi.h
@@ -57,10 +57,8 @@ bigint_t _gnutls_mpi_random_modp(bigint_t, bigint_t p,
#define _gnutls_prime_check _gnutls_mpi_ops.bigint_prime_check
#define _gnutls_mpi_print(x,y,z) _gnutls_mpi_ops.bigint_print(x,y,z,GNUTLS_MPI_FORMAT_USG)
#define _gnutls_mpi_print_lz(x,y,z) _gnutls_mpi_ops.bigint_print(x,y,z,GNUTLS_MPI_FORMAT_STD)
-#define _gnutls_mpi_print_pgp(x,y,z) _gnutls_mpi_ops.bigint_print(x,y,z,GNUTLS_MPI_FORMAT_PGP)
#define _gnutls_mpi_copy _gnutls_mpi_ops.bigint_copy
#define _gnutls_mpi_scan(r, b, s) _gnutls_mpi_ops.bigint_scan(r, b, s, GNUTLS_MPI_FORMAT_USG)
-#define _gnutls_mpi_scan_pgp(r, b, s) _gnutls_mpi_ops.bigint_scan(r, b, s, GNUTLS_MPI_FORMAT_PGP)
inline static
void _gnutls_mpi_release(bigint_t * x)
@@ -76,8 +74,13 @@ int _gnutls_mpi_init_scan(bigint_t * ret_mpi, const void *buffer,
size_t nbytes);
int _gnutls_mpi_init_scan_nz(bigint_t * ret_mpi, const void *buffer,
size_t nbytes);
+
+#ifdef ENABLE_OPENPGP
+#define _gnutls_mpi_print_pgp(x,y,z) _gnutls_mpi_ops.bigint_print(x,y,z,GNUTLS_MPI_FORMAT_PGP)
+#define _gnutls_mpi_scan_pgp(r, b, s) _gnutls_mpi_ops.bigint_scan(r, b, s, GNUTLS_MPI_FORMAT_PGP)
int _gnutls_mpi_init_scan_pgp(bigint_t * ret_mpi, const void *buffer,
size_t nbytes);
+#endif
int _gnutls_mpi_dprint_lz(const bigint_t a, gnutls_datum_t * dest);
int _gnutls_mpi_dprint(const bigint_t a, gnutls_datum_t * dest);