diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-04-15 08:12:54 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-04-15 08:12:54 +0000 |
commit | 9944a844211dd2152cf38c56165670f28f833033 (patch) | |
tree | 12bdb114c7ab9850ec9c71b9c4aed6642e2fe2d1 /share/man/man8/vpn.8 | |
parent | d41e936498331a73a0c36266c080df7ffc0da451 (diff) |
spacing, and a typo;
Diffstat (limited to 'share/man/man8/vpn.8')
-rw-r--r-- | share/man/man8/vpn.8 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man8/vpn.8 b/share/man/man8/vpn.8 index cd772e97fb8..66c54633798 100644 --- a/share/man/man8/vpn.8 +++ b/share/man/man8/vpn.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: vpn.8,v 1.92 2005/04/15 08:09:38 jmc Exp $ +.\" $OpenBSD: vpn.8,v 1.93 2005/04/15 08:12:53 jmc Exp $ .\" .\" Copyright 1998 Niels Provos <provos@physnet.uni-hamburg.de> .\" All rights reserved. @@ -299,8 +299,8 @@ should be used to configure machines appropriately. To create a manual keyed VPN between two class C networks using 3DES encryption and the following IP addresses: .Bd -literal -offset indent -GATEWAY_A = 192.168.1.13 -GATEWAY_B = 192.168.1.15 +GATEWAY_A = 192.168.1.13 +GATEWAY_B = 192.168.1.15 NETWORK_A = 10.0.50.0/24 NETWORK_B = 10.0.99.0/24 .Ed @@ -308,7 +308,7 @@ NETWORK_B = 10.0.99.0/24 .It Choose the shared secrets using a suitably random method. The 3DES encryption key needs 192 bits (3x64), or 24 bytes. -The SHA-1 authentication key for needs 160 bits, or 20 bytes. +The SHA-1 authentication key needs 160 bits, or 20 bytes. .Bd -literal -offset indent # openssl rand 24 | hexdump -e '24/1 "%02x"' > enc_key # openssl rand 20 | hexdump -e '20/1 "%02x"' > auth_key |