]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
*** empty log message ***
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 8 May 2004 18:51:46 +0000 (18:51 +0000)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 8 May 2004 18:51:46 +0000 (18:51 +0000)
src/Makefile.am
src/README.srptool [moved from src/README.srpcrypt with 73% similarity]

index 7b50bb2ee4afe35e4906b6285af0c172ca2e44d6..766502d46f95188c64cd7a12d9f935028b00aeca 100644 (file)
@@ -1,4 +1,4 @@
-EXTRA_DIST = common.h crypt.gaa crypt-gaa.h README.srpcrypt \
+EXTRA_DIST = common.h crypt.gaa crypt-gaa.h README.srptool \
        README cli.gaa cli-gaa.h serv-gaa.h serv.gaa tls_test.gaa \
        tls_test-gaa.h tests.h gnutls-http-serv list.h certtool-gaa.h \
        certtool.gaa getpass.h certtool-cfg.h
similarity index 73%
rename from src/README.srpcrypt
rename to src/README.srptool
index 53e7d5c27e93d1d1c4740292fb7a23cd1ae59918..b695122f494f1af5b605dd26e913d13280b9e061 100644 (file)
@@ -1,4 +1,4 @@
-srpcrypt is a very simple program that emulates the programs in the libsrp 
+srptool is a very simple program that emulates the programs in the libsrp 
 found in http://srp.stanford.edu.
 
 It is intended for use in places where you don't expect srp
@@ -9,21 +9,21 @@ is the case use libsrp and the pam modules provided.
 Libsrp uses two files. One called 'tpasswd' which holds usernames and
 verifiers, and 'tpasswd.conf' which holds generators and primes.
 
-How to use srpcrypt:
+How to use srptool:
 
-Run: srpcrypt --create-conf /etc/tpasswd.conf
+Run: srptool --create-conf /etc/tpasswd.conf
 
 * This will create tpasswd.conf which holds the g and n values for
 SRP protocol (generator and a large prime).
 
-Run: srpcrypt --passwd /etc/tpasswd --passwd-conf /etc/tpasswd.conf -u test
+Run: srptool --passwd /etc/tpasswd --passwd-conf /etc/tpasswd.conf -u test
 
 * This will create /etc/tpasswd and will add user 'test' (you will also
 be prompted for a password). Verifiers are stored by default in the
 way libsrp expects (using a modified SHA()). However using this tool you 
 may also specify blowfish crypt instead of SHA (see --crypt parameter).
 
-Run: srpcrypt --passwd /etc/tpasswd --passwd-conf /etc/tpasswd.conf --verify -u test
+Run: srptool --passwd /etc/tpasswd --passwd-conf /etc/tpasswd.conf --verify -u test
 
 * You will be promted for a password, and if this password matches the one
 in /etc/tpasswd you will get an ok.