ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/tools/README.respond
Revision: 4951
Committed: Sun Nov 30 12:24:26 2014 UTC (11 years, 7 months ago) by michael
File size: 927 byte(s)
Log Message:
- Removed old mkkeypair script which has been used for cryptlinks

File Contents

# Content
1 rsa_respond
2
3 respond:
4
5 respond takes the challenge from the server and creates a valid response
6 to pass back to the server.
7
8 Syntax:
9 $ ./respond <private key> <challenge> [passphrase]
10
11 Notes:
12
13 The private key file is protected by a passphrase, entered when the key is
14 created. The passphrase is prompted for whenever respond is called.
15
16 If the passphrase is passed on the command line (insecure mode), the
17 program will not prompt for a passphrase. This is primarily for running
18 rsa_respond from a script.
19
20 Compiling:
21
22 Untar the distribution
23 Read this document
24 Run 'configure' (not so foolproof, tweak the Makefile if necessary)
25 ...and 'make'
26
27 libcrypto from OpenSSL must be available in order to use this program.
28
29 System support:
30 respond compiles properly, and have been tested on FreeBSD 4.x, Linux glibc,
31 Solaris 8, and Cygwin 1.2 or higher.
32
33 # $Id: README 33 2005-10-02 20:50:00Z knight $