summaryrefslogtreecommitdiff
path: root/libextra/gnutls_srp.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-12-16 17:16:45 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-12-16 17:16:45 +0000
commit3bbfedf3d68fd064cfb0e3d567f202a5375f6b5f (patch)
treee5fd7b9200761b081894b3cf0cc32e86a1c06c2c /libextra/gnutls_srp.h
parentaa23650777efb3dfd84993631f4505af8e4b66f2 (diff)
downloadgnutls-3bbfedf3d68fd064cfb0e3d567f202a5375f6b5f.tar.gz
First part of SRP-6 support. Follows draft-ietf-tls-srp-04 and does not need the second key exchange part. Does not work yet.
Diffstat (limited to 'libextra/gnutls_srp.h')
-rw-r--r--libextra/gnutls_srp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libextra/gnutls_srp.h b/libextra/gnutls_srp.h
index b0918aab07..fa3883606b 100644
--- a/libextra/gnutls_srp.h
+++ b/libextra/gnutls_srp.h
@@ -2,7 +2,7 @@
int _gnutls_srp_gx(opaque *text, size_t textsize, opaque** result, MPI g, MPI prime, gnutls_alloc_function);
MPI _gnutls_calc_srp_B(MPI * ret_b, MPI g, MPI n, MPI v);
-MPI _gnutls_calc_srp_u( MPI B);
+MPI _gnutls_calc_srp_u( MPI A, MPI B);
MPI _gnutls_calc_srp_S1(MPI A, MPI b, MPI u, MPI v, MPI n);
MPI _gnutls_calc_srp_A(MPI *a, MPI g, MPI n);
MPI _gnutls_calc_srp_S2(MPI B, MPI g, MPI x, MPI a, MPI u, MPI n);