summaryrefslogtreecommitdiff
path: root/lib/gnutls_algorithms.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-20 10:43:35 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-20 10:43:35 +0000
commit4c5c25c1a610af924867f7d2baa64f37d81d8b67 (patch)
tree71e44aa7a77bdd1516827e6dc47a7835eb05970d /lib/gnutls_algorithms.h
parentd8f29688941b616c4b1a3cf9f2797e707b60ae50 (diff)
downloadgnutls-4c5c25c1a610af924867f7d2baa64f37d81d8b67.tar.gz
Separated the library to gnutls and gnutls-extra. gnutls-extra library contains the GPL parts of gnutls
Diffstat (limited to 'lib/gnutls_algorithms.h')
-rw-r--r--lib/gnutls_algorithms.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/gnutls_algorithms.h b/lib/gnutls_algorithms.h
index 8a724258f6..2209a3b263 100644
--- a/lib/gnutls_algorithms.h
+++ b/lib/gnutls_algorithms.h
@@ -74,3 +74,10 @@ const char *gnutls_compression_get_name(CompressionMethod algorithm);
/* Type to KX mappings */
KXAlgorithm _gnutls_map_kx_get_kx(CredType type);
CredType _gnutls_map_kx_get_cred(KXAlgorithm algorithm);
+
+struct gnutls_kx_algo_entry {
+ char *name;
+ KXAlgorithm algorithm;
+ MOD_AUTH_STRUCT *auth_struct;
+};
+typedef struct gnutls_kx_algo_entry gnutls_kx_algo_entry;