summaryrefslogtreecommitdiff
path: root/tools/README.respond
diff options
context:
space:
mode:
Diffstat (limited to 'tools/README.respond')
-rw-r--r--tools/README.respond36
1 files changed, 36 insertions, 0 deletions
diff --git a/tools/README.respond b/tools/README.respond
new file mode 100644
index 0000000..898bf85
--- /dev/null
+++ b/tools/README.respond
@@ -0,0 +1,36 @@
+ rsa_respond
+
+respond:
+
+respond takes the challenge from the server and creates a valid response
+to pass back to the server.
+
+Syntax:
+$ ./respond <private key> <challenge> [passphrase]
+
+Notes:
+
+The private key file is protected by a passphrase, entered when the key is
+created. The passphrase is prompted for whenever respond is called.
+
+Do not use mkkeypair to create a RSA key. The shell script will create it
+without a passphrase.
+
+If the passphrase is passed on the command line (insecure mode), the
+program will not prompt for a passphrase. This is primarily for running
+rsa_respond from a script.
+
+Compiling:
+
+Untar the distribution
+Read this document
+Run 'configure' (not so foolproof, tweak the Makefile if necessary)
+...and 'make'
+
+libcrypto from OpenSSL must be available in order to use this program.
+
+System support:
+respond compiles properly, and have been tested on FreeBSD 4.x, Linux glibc,
+Solaris 8, and Cygwin 1.2 or higher.
+
+# $Id: README 33 2005-10-02 20:50:00Z knight $