summaryrefslogtreecommitdiff
path: root/lib/auth/srp_passwd.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2011-04-16 00:38:08 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2011-04-16 00:38:08 +0200
commit8b038ab976011a715c495207a750e7cc42165d06 (patch)
tree85d651247736a094ab066fbab0a7af0e3486b417 /lib/auth/srp_passwd.h
parent426cc51abcf68c4e9291c283214fff9ff955cfda (diff)
downloadgnutls-8b038ab976011a715c495207a750e7cc42165d06.tar.gz
The auth_ and ext_ files were moved to respective directories.
Diffstat (limited to 'lib/auth/srp_passwd.h')
-rw-r--r--lib/auth/srp_passwd.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/lib/auth/srp_passwd.h b/lib/auth/srp_passwd.h
new file mode 100644
index 0000000000..b8cf855e25
--- /dev/null
+++ b/lib/auth/srp_passwd.h
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2001, 2002, 2003, 2004, 2005, 2008, 2010 Free Software
+ * Foundation, Inc.
+ *
+ * Author: Nikos Mavrogiannopoulos
+ *
+ * This file is part of GnuTLS.
+ *
+ * The GnuTLS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA
+ *
+ */
+
+#ifdef ENABLE_SRP
+
+typedef struct
+{
+ char *username;
+
+ gnutls_datum_t salt;
+ gnutls_datum_t v;
+ gnutls_datum_t g;
+ gnutls_datum_t n;
+} SRP_PWD_ENTRY;
+
+/* this is locally allocated. It should be freed using the provided function */
+int _gnutls_srp_pwd_read_entry (gnutls_session_t state, char *username,
+ SRP_PWD_ENTRY **);
+void _gnutls_srp_entry_free (SRP_PWD_ENTRY * entry);
+int _gnutls_sbase64_decode (uint8_t * data, size_t data_size,
+ uint8_t ** result);
+
+#endif /* ENABLE_SRP */