freebsd-dev/crypto/openssh/moduli.5

128 lines
3.6 KiB
Groff
Raw Normal View History

2013-03-22 11:19:48 +00:00
.\" $OpenBSD: moduli.5,v 1.17 2012/09/26 17:34:38 jmc Exp $
2008-07-23 09:33:08 +00:00
.\"
.\" Copyright (c) 2008 Damien Miller <djm@mindrot.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.Dd $Mdocdate: September 26 2012 $
2008-07-23 09:33:08 +00:00
.Dt MODULI 5
.Os
.Sh NAME
.Nm moduli
2011-09-28 08:14:41 +00:00
.Nd Diffie-Hellman moduli
2008-07-23 09:33:08 +00:00
.Sh DESCRIPTION
The
.Pa /etc/moduli
2011-09-28 08:14:41 +00:00
file contains prime numbers and generators for use by
2008-07-23 09:33:08 +00:00
.Xr sshd 8
in the Diffie-Hellman Group Exchange key exchange method.
.Pp
New moduli may be generated with
.Xr ssh-keygen 1
using a two-step process.
An initial
.Em candidate generation
2011-09-28 08:14:41 +00:00
pass, using
2008-07-23 09:33:08 +00:00
.Ic ssh-keygen -G ,
calculates numbers that are likely to be useful.
A second
.Em primality testing
pass, using
2011-09-28 08:14:41 +00:00
.Ic ssh-keygen -T ,
2008-07-23 09:33:08 +00:00
provides a high degree of assurance that the numbers are prime and are
2011-09-28 08:14:41 +00:00
safe for use in Diffie-Hellman operations by
2008-07-23 09:33:08 +00:00
.Xr sshd 8 .
This
.Nm
format is used as the output from each pass.
.Pp
The file consists of newline-separated records, one per modulus,
2011-09-28 08:14:41 +00:00
containing seven space-separated fields.
2008-07-23 09:33:08 +00:00
These fields are as follows:
.Bl -tag -width Description -offset indent
.It timestamp
The time that the modulus was last processed as YYYYMMDDHHMMSS.
.It type
Decimal number specifying the internal structure of the prime modulus.
Supported types are:
.Pp
.Bl -tag -width 0x00 -compact
.It 0
2011-09-28 08:14:41 +00:00
Unknown, not tested.
2008-07-23 09:33:08 +00:00
.It 2
"Safe" prime; (p-1)/2 is also prime.
.It 4
2013-03-22 11:19:48 +00:00
Sophie Germain; 2p+1 is also prime.
2008-07-23 09:33:08 +00:00
.El
.Pp
Moduli candidates initially produced by
.Xr ssh-keygen 1
are Sophie Germain primes (type 4).
2011-09-28 08:14:41 +00:00
Further primality testing with
2008-07-23 09:33:08 +00:00
.Xr ssh-keygen 1
produces safe prime moduli (type 2) that are ready for use in
.Xr sshd 8 .
Other types are not used by OpenSSH.
.It tests
Decimal number indicating the type of primality tests that the number
has been subjected to represented as a bitmask of the following values:
.Pp
.Bl -tag -width 0x00 -compact
.It 0x00
2011-09-28 08:14:41 +00:00
Not tested.
2008-07-23 09:33:08 +00:00
.It 0x01
2011-09-28 08:14:41 +00:00
Composite number \(en not prime.
2008-07-23 09:33:08 +00:00
.It 0x02
2011-09-28 08:14:41 +00:00
Sieve of Eratosthenes.
2008-07-23 09:33:08 +00:00
.It 0x04
2011-09-28 08:14:41 +00:00
Probabilistic Miller-Rabin primality tests.
2008-07-23 09:33:08 +00:00
.El
.Pp
The
.Xr ssh-keygen 1
moduli candidate generation uses the Sieve of Eratosthenes (flag 0x02).
Subsequent
.Xr ssh-keygen 1
primality tests are Miller-Rabin tests (flag 0x04).
.It trials
2011-09-28 08:14:41 +00:00
Decimal number indicating the number of primality trials
that have been performed on the modulus.
2008-07-23 09:33:08 +00:00
.It size
Decimal number indicating the size of the prime in bits.
.It generator
The recommended generator for use with this modulus (hexadecimal).
.It modulus
The modulus itself in hexadecimal.
.El
.Pp
2011-09-28 08:14:41 +00:00
When performing Diffie-Hellman Group Exchange,
2008-07-23 09:33:08 +00:00
.Xr sshd 8
first estimates the size of the modulus required to produce enough
2011-09-28 08:14:41 +00:00
Diffie-Hellman output to sufficiently key the selected symmetric cipher.
2008-07-23 09:33:08 +00:00
.Xr sshd 8
then randomly selects a modulus from
.Fa /etc/moduli
that best meets the size requirement.
.Sh SEE ALSO
.Xr ssh-keygen 1 ,
2011-09-28 08:14:41 +00:00
.Xr sshd 8
2013-03-22 11:19:48 +00:00
.Sh STANDARDS
2008-07-23 09:33:08 +00:00
.Rs
2013-03-22 11:19:48 +00:00
.%A M. Friedl
.%A N. Provos
.%A W. Simpson
.%D March 2006
2008-07-23 09:33:08 +00:00
.%R RFC 4419
2013-03-22 11:19:48 +00:00
.%T Diffie-Hellman Group Exchange for the Secure Shell (SSH) Transport Layer Protocol
2008-07-23 09:33:08 +00:00
.%D 2006
.Re