Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Brian Smith
nettle
Commits
342659df
Commit
342659df
authored
22 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
(DSA): New section.
(RSA): Updated documentation. Rev: src/nettle/nettle.texinfo:1.19
parent
c2128ec7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nettle.texinfo
+236
-22
236 additions, 22 deletions
nettle.texinfo
with
236 additions
and
22 deletions
nettle.texinfo
+
236
−
22
View file @
342659df
...
@@ -1332,13 +1332,21 @@ the configuration of the server can be understood as "grant access to
...
@@ -1332,13 +1332,21 @@ the configuration of the server can be understood as "grant access to
whoever knows the private key corresponding to this particular public
whoever knows the private key corresponding to this particular public
key, and to no others".
key, and to no others".
@menu
* RSA:: The RSA public key algorithm.
* DSA:: The DSA digital signature algorithm.
@end menu
@node RSA, DSA, Public-key algorithms, Public-key algorithms
@comment node-name, next, previous, up
@subsection @acronym
{
RSA
}
@subsection @acronym
{
RSA
}
The @acronym
{
RSA
}
was the first practical digital signature
algorithm
The @acronym
{
RSA
}
algorithm
was the first practical digital signature
that was constructed. It was described 1978 in a paper by
Ronald Rivest,
algorithm
that was constructed. It was described 1978 in a paper by
Adi Shamir and L.M. Adleman, and the technique was also
patented in
Ronald Rivest,
Adi Shamir and L.M. Adleman, and the technique was also
1983. The patent expired on September 20, 2000, and since
that day,
patented in
1983. The patent expired on September 20, 2000, and since
@acronym
{
RSA
}
can be used freely.
that day,
@acronym
{
RSA
}
can be used freely.
It's remarkably simple to describe the trapdoor function behind
It's remarkably simple to describe the trapdoor function behind
@acronym
{
RSA
}
. The "one-way"-function used is
@acronym
{
RSA
}
. The "one-way"-function used is
...
@@ -1406,9 +1414,6 @@ computed, the operation returns true if and only if the result equals
...
@@ -1406,9 +1414,6 @@ computed, the operation returns true if and only if the result equals
@subsection Nettle's @acronym
{
RSA
}
support
@subsection Nettle's @acronym
{
RSA
}
support
@c FIXME: Update for RSA renaming. and new *
_
digest functions. Document
@c dsa.
Nettle represents @acronym
{
RSA
}
keys using two structures that contain
Nettle represents @acronym
{
RSA
}
keys using two structures that contain
large numbers (of type @code
{
mpz
_
t
}
).
large numbers (of type @code
{
mpz
_
t
}
).
...
@@ -1428,16 +1433,16 @@ signing. Instead, the factors @code{p} and @code{q}, and the parameters
...
@@ -1428,16 +1433,16 @@ signing. Instead, the factors @code{p} and @code{q}, and the parameters
Before use, these structs must be initialized by calling one of
Before use, these structs must be initialized by calling one of
@deftypefun void rsa
_
init
_
public
_
key (struct rsa
_
public
_
key *@var
{
pub
}
)
@deftypefun void rsa
_
public
_
key
_
init
(struct rsa
_
public
_
key *@var
{
pub
}
)
@deftypefunx void rsa
_
init
_
private
_
key (struct rsa
_
private
_
key *@var
{
key
}
)
@deftypefunx void rsa
_
private
_
key
_
init
(struct rsa
_
private
_
key *@var
{
key
}
)
Calls @code
{
mpz
_
init
}
on all numbers in the key struct.
Calls @code
{
mpz
_
init
}
on all numbers in the key struct.
@end deftypefun
@end deftypefun
and when finished with them, the space for the numbers must be
and when finished with them, the space for the numbers must be
deallocated by calling one of
deallocated by calling one of
@deftypefun void rsa
_
clear
_
public
_
key (struct rsa
_
public
_
key *@var
{
pub
}
)
@deftypefun void rsa
_
public
_
key
_
clear
(struct rsa
_
public
_
key *@var
{
pub
}
)
@deftypefunx void rsa
_
clear
_
private
_
key (struct rsa
_
private
_
key *@var
{
key
}
)
@deftypefunx void rsa
_
private
_
key
_
clear
(struct rsa
_
private
_
key *@var
{
key
}
)
Calls @code
{
mpz
_
clear
}
on all numbers in the key struct.
Calls @code
{
mpz
_
clear
}
on all numbers in the key struct.
@end deftypefun
@end deftypefun
...
@@ -1449,8 +1454,8 @@ to customize allocation, see
...
@@ -1449,8 +1454,8 @@ to customize allocation, see
When you have assigned values to the attributes of a key, you must call
When you have assigned values to the attributes of a key, you must call
@deftypefun int rsa
_
prepare
_
public
_
key (struct rsa
_
public
_
key *@var
{
pub
}
)
@deftypefun int rsa
_
public
_
key
_
prepare
(struct rsa
_
public
_
key *@var
{
pub
}
)
@deftypefunx int rsa
_
prepare
_
private
_
key (struct rsa
_
private
_
key *@var
{
key
}
)
@deftypefunx int rsa
_
private
_
key
_
prepare
(struct rsa
_
private
_
key *@var
{
key
}
)
Computes the octet size of the key (stored in the @code
{
size
}
attribute,
Computes the octet size of the key (stored in the @code
{
size
}
attribute,
and may also do other basic sanity checks. Returns one if successful, or
and may also do other basic sanity checks. Returns one if successful, or
zero if the key can't be used, for instance if the modulo is smaller
zero if the key can't be used, for instance if the modulo is smaller
...
@@ -1460,23 +1465,40 @@ than the minimum size specified by PKCS#1.
...
@@ -1460,23 +1465,40 @@ than the minimum size specified by PKCS#1.
Before signing or verifying a message, you first hash it with the
Before signing or verifying a message, you first hash it with the
appropriate hash function. You pass the hash function's context struct
appropriate hash function. You pass the hash function's context struct
to the rsa function, and it will extract the message digest and do the
to the rsa function, and it will extract the message digest and do the
rest of the work.
rest of the work. There are also alternative functions that take the
@acronym
{
md5
}
or @acronym
{
sha1
}
hash digest as argument.
Creation and verification of signatures is done with the following functions:
Creation and verification of signatures is done with the following functions:
@deftypefun void rsa
_
md5
_
sign (struct rsa
_
private
_
key *@var
{
key
}
, struct md5
_
ctx *@var
{
hash
}
, mpz
_
t @var
{
signature
}
)
@deftypefun void rsa
_
md5
_
sign (
const
struct rsa
_
private
_
key *@var
{
key
}
, struct md5
_
ctx *@var
{
hash
}
, mpz
_
t @var
{
signature
}
)
@deftypefunx void rsa
_
sha1
_
sign (struct rsa
_
private
_
key *@var
{
key
}
, struct sha1
_
ctx *@var
{
hash
}
, mpz
_
t @var
{
signature
}
)
@deftypefunx void rsa
_
sha1
_
sign (
const
struct rsa
_
private
_
key *@var
{
key
}
, struct sha1
_
ctx *@var
{
hash
}
, mpz
_
t @var
{
signature
}
)
The signature is stored in @var
{
signature
}
(which must have been
The signature is stored in @var
{
signature
}
(which must have been
@code
{
mpz
_
init
}
:ed earlier). The hash context is reset so that it can be
@code
{
mpz
_
init
}
:ed earlier). The hash context is reset so that it can be
used for new messages.
used for new messages.
@end deftypefun
@end deftypefun
@deftypefun int rsa
_
md5
_
verify (struct rsa
_
public
_
key *@var
{
key
}
, struct md5
_
ctx *@var
{
hash
}
, const mpz
_
t @var
{
signature
}
)
@deftypefun void rsa
_
md5
_
sign
_
digest (const struct rsa
_
private
_
key *@var
{
key
}
, const uint8
_
t *@var
{
digest
}
, mpz
_
t @var
{
signature
}
)
@deftypefunx int rsa
_
sha1
_
verify (struct rsa
_
public
_
key *@var
{
key
}
, struct sha1
_
ctx *@var
{
hash
}
, const mpz
_
t @var
{
signature
}
)
@deftypefunx void rsa
_
sha1
_
sign
_
digest (const struct rsa
_
private
_
key *@var
{
key
}
, const uint8
_
t *@var
{
digest
}
, mpz
_
t @var
{
signature
}
);
Creates a signature from the given hash digest. @var
{
digest
}
should
point to a digest of size @code
{
MD5
_
DIGEST
_
SIZE
}
or
@code
{
SHA1
_
DIGEST
_
SIZE
}
, respectively. The signature is stored in
@var
{
signature
}
(which must have been @code
{
mpz
_
init
}
:ed earlier)
@end deftypefun
@deftypefun int rsa
_
md5
_
verify (const struct rsa
_
public
_
key *@var
{
key
}
, struct md5
_
ctx *@var
{
hash
}
, const mpz
_
t @var
{
signature
}
)
@deftypefunx int rsa
_
sha1
_
verify (const struct rsa
_
public
_
key *@var
{
key
}
, struct sha1
_
ctx *@var
{
hash
}
, const mpz
_
t @var
{
signature
}
)
Returns 1 if the signature is valid, or 0 if it isn't. In either case,
Returns 1 if the signature is valid, or 0 if it isn't. In either case,
the hash context is reset so that it can be used for new messages.
the hash context is reset so that it can be used for new messages.
@end deftypefun
@end deftypefun
@deftypefun int rsa
_
md5
_
verify
_
digest (const struct rsa
_
public
_
key *@var
{
key
}
, const uint8
_
t *@var
{
digest
}
, const mpz
_
t @var
{
signature
}
)
@deftypefunx int rsa
_
sha1
_
verify
_
digest (const struct rsa
_
public
_
key
*@var
{
key
}
, const uint8
_
t *@var
{
digest
}
, const mpz
_
t @var
{
signature
}
)
Returns 1 if the signature is valid, or 0 if it isn't. @var
{
digest
}
should
point to a digest of size @code
{
MD5
_
DIGEST
_
SIZE
}
or
@code
{
SHA1
_
DIGEST
_
SIZE
}
, respectively.
@end deftypefun
If you need to use the @acronym
{
RSA
}
trapdoor, the private key, in a way
If you need to use the @acronym
{
RSA
}
trapdoor, the private key, in a way
that isn't supported by the above functions Nettle also includes a
that isn't supported by the above functions Nettle also includes a
function that computes @code
{
x
^
d mod n
}
and nothing more, using the
function that computes @code
{
x
^
d mod n
}
and nothing more, using the
...
@@ -1491,8 +1513,8 @@ At last, how do you create new keys?
...
@@ -1491,8 +1513,8 @@ At last, how do you create new keys?
@deftypefun int rsa
_
generate
_
keypair (struct rsa
_
public
_
key *@var
{
pub
}
, struct rsa
_
private
_
key *@var
{
key
}
, void *@var
{
random
_
ctx
}
, nettle
_
random
_
func @var
{
random
}
, void *@var
{
progress
_
ctx
}
, nettle
_
progress
_
func @var
{
progress
}
, unsigned @var
{
n
_
size
}
, unsigned @var
{
e
_
size
}
);
@deftypefun int rsa
_
generate
_
keypair (struct rsa
_
public
_
key *@var
{
pub
}
, struct rsa
_
private
_
key *@var
{
key
}
, void *@var
{
random
_
ctx
}
, nettle
_
random
_
func @var
{
random
}
, void *@var
{
progress
_
ctx
}
, nettle
_
progress
_
func @var
{
progress
}
, unsigned @var
{
n
_
size
}
, unsigned @var
{
e
_
size
}
);
There are lots of parameters. @var
{
pub
}
and @var
{
key
}
is where the
There are lots of parameters. @var
{
pub
}
and @var
{
key
}
is where the
resulting key pair is stored. The structs should be initialized, but you
resulting key pair is stored. The structs should be initialized, but you
don't need to call @code
{
rsa
_
prepare
_
public
_
key
}
or
don't need to call @code
{
rsa
_
public
_
key
_
prepare
}
or
@code
{
rsa
_
prepare
_
private
_
key
}
after key generation.
@code
{
rsa
_
private
_
key
_
prepare
}
after key generation.
@var
{
random
_
ctx
}
and @var
{
random
}
is a randomness generator.
@var
{
random
_
ctx
}
and @var
{
random
}
is a randomness generator.
@code
{
random(random
_
ctx, length, dst)
}
should generate @code
{
length
}
@code
{
random(random
_
ctx, length, dst)
}
should generate @code
{
length
}
...
@@ -1509,12 +1531,204 @@ is non-zero, it is the desired size of the public exponent and a random
...
@@ -1509,12 +1531,204 @@ is non-zero, it is the desired size of the public exponent and a random
exponent of that size is selected. But if @var
{
e
_
size
}
is zero, it is
exponent of that size is selected. But if @var
{
e
_
size
}
is zero, it is
assumed that the caller has already chosen a value for @code
{
e
}
, and
assumed that the caller has already chosen a value for @code
{
e
}
, and
stored it in @var
{
pub
}
.
stored it in @var
{
pub
}
.
Returns 1 on success, and 0 on failure. The function can fail for
Returns 1 on success, and 0 on failure. The function can fail for
example if if @var
{
n
_
size
}
is too small, or if @var
{
e
_
size
}
is zero and
example if if @var
{
n
_
size
}
is too small, or if @var
{
e
_
size
}
is zero and
@code
{
pub->e
}
is an even number.
@code
{
pub->e
}
is an even number.
@end deftypefun
@end deftypefun
@node DSA, , RSA, Public-key algorithms
@comment node-name, next, previous, up
@subsection Nettle's @acronym
{
DSA
}
support
The @acronym
{
DSA
}
digital signature algorithm is more complex than
@acronym
{
RSA
}
. It was specified during the early 1990s, and in 1994 NIST
published FIPS 186 which is the authoritative specification. Sometimes
@acronym
{
DSA
}
is referred to using the acronym @acronym
{
DSS
}
, for
Digital Signature Standard.
For @acronym
{
DSA
}
, the underlying mathematical problem is the
computation of discreet logarithms. The public key consists of a large
prime @code
{
p
}
, a small prime @code
{
q
}
which is a factor of @code
{
p-1
}
,
a number @code
{
g
}
which generates a subgroup of order @code
{
q
}
modulo
@code
{
p
}
, and an element @code
{
y
}
in that subgroup.
The size of @code
{
q
}
is fixed to 160 bits, to match with the
@acronym
{
SHA1
}
hash algorithm which is used in @acronym
{
DSA
}
. The size
of @code
{
q
}
is in principle unlimited, but the standard specifies only
nine specific sizes: @code
{
512 + l*64
}
, where @code
{
l
}
is between 0 and
8. Thus, the maximum size of @code
{
p
}
is 1024 bits, at that is also the
recommended size.
The subgroup requirement means that if you compute
@example
g
^
t mod p
@end example
for all possible integers @code
{
t
}
, you will get precisely @code
{
q
}
distinct values.
The private key is a secret exponent @code
{
x
}
, such that
@example
g
^
x = y mod p
@end example
In mathematical speak, @code
{
x
}
is the @dfn
{
discrete logarithm
}
of
@code
{
y
}
mod @code
{
p
}
, with respect to the generator @code
{
d
}
. The size
of @code
{
x
}
will also be about 160 bits.
The signature generation algorithm is randomized; in order to create a
@acronym
{
DSA
}
signature, you need a good source for random numbers
(@pxref
{
Randomness
}
).
To create a signature, one starts with the hash digest of the message,
@code
{
h
}
, which is a 160 bit number, and a random number @code
{
k,
0<k<q
}
, also 160 bits. Next, one computes
@example
r = (g
^
k mod p) mod q
s = k
^
-1 (h + x r) mod q
@end example
The signature is the pair @code
{
(r, s)
}
, two 160 bit numbers. Note the
two different mod operations when computing @code
{
r
}
, and the use of the
secret exponent @code
{
x
}
.
To verify a signature, one first checks that @code
{
0 < r,s < q
}
, and
then one computes backwards,
@example
w = s
^
-1 mod q
v = (g
^
(w h) y
^
(w r) mod p) mod q
@end example
The signature is valid if @code
{
v = r
}
. This works out because @code
{
w =
s
^
-1 mod q = k (h + x r)
^
-1 mod q
}
, so that
@example
g
^
(w h) y
^
(w r) = g
^
(w h) (g
^
x)
^
(w r) = g
^
(w (h + x r)) = g
^
k
@end example
When reducing mod @code
{
q
}
this yields @code
{
r
}
. Note that when
verifying a signature, we don't know either @code
{
k
}
or @code
{
x
}
: those
numbers are secret.
If you can choose between @acronym
{
RSA
}
and @acronym
{
DSA
}
, which one is
best? Both are believed to be secure. @acronym
{
DSA
}
gained popularity
in the late 1990s, as a patent free alternative to @acronym
{
RSA
}
. Now
that the @acronym
{
RSA
}
patents have expired, there's no compelling
reason to want to use @acronym
{
DSA
}
.
@acronym
{
DSA
}
signatures are smaller than @acronym
{
RSA
}
signatures,
which is important for some specialized applications.
From a practical point of view, @acronym
{
DSA
}
's need for a good
randomness source is a serious disadvantage. If you ever use the same
@code
{
k
}
(and @code
{
r
}
) for two different message, you leak your private
key.
@subsection Nettle's @acronym
{
DSA
}
support
Like for @acronym
{
RSA
}
, Nettle represents @acronym
{
DSA
}
keys using two
structures, containing values of type @code
{
mpz
_
t
}
. For information on
how to customize allocation, see @xref
{
Custom Allocation,,GMP
Allocation,gmp, GMP Manual
}
.
Most of the @acronym
{
DSA
}
functions are very similar to the
corresponding @acronym
{
RSA
}
functions, but there are a few differences
pointed out below. For a start, there are no functions corresponding to
@code
{
rsa
_
public
_
key
_
prepare
}
and @code
{
rsa
_
private
_
key
_
prepare
}
.
@deftp
{
Context struct
}
{
dsa
_
public
_
key
}
p q g y
The public parameters described above.
@end deftp
@deftp
{
Context struct
}
{
dsa
_
private
_
key
}
x
The private key @code
{
x
}
.
@end deftp
Before use, these structs must be initialized by calling one of
@deftypefun void dsa
_
public
_
key
_
init (struct dsa
_
public
_
key *@var
{
pub
}
)
@deftypefunx void dsa
_
private
_
key
_
init (struct dsa
_
private
_
key *@var
{
key
}
)
Calls @code
{
mpz
_
init
}
on all numbers in the key struct.
@end deftypefun
When finished with them, the space for the numbers must be
deallocated by calling one of
@deftypefun void dsa
_
public
_
key
_
clear (struct dsa
_
public
_
key *@var
{
pub
}
)
@deftypefunx void dsa
_
private
_
key
_
clear (struct dsa
_
private
_
key *@var
{
key
}
)
Calls @code
{
mpz
_
clear
}
on all numbers in the key struct.
@end deftypefun
Signatures are represented using the structure below, and need to be
initialized and cleared in the same way as the key structs.
@deftp
{
Context struct
}
{
dsa
_
signature
}
r s
@end deftp
@deftypefun void dsa
_
signature
_
init (struct dsa
_
signature *@var
{
signature
}
)
@deftypefunx void dsa
_
signature
_
clear (struct dsa
_
signature *@var
{
signature
}
)
You must call @code
{
dsa
_
signature
_
init
}
before creating or using a
signature, and call @code
{
dsa
_
signature
_
clear
}
when you are finished
with it.
@end deftypefun
For signing, you need to provide both the public and the private key
(unlike @acronym
{
RSA
}
, where the private key struct includes all
information needed for signing), and a source for random numbers.
Signatures always use the @acronym
{
SHA1
}
hash function.
@deftypefun void dsa
_
sign (const struct dsa
_
public
_
key *@var
{
pub
}
, const struct dsa
_
private
_
key *@var
{
key
}
, void *@var
{
random
_
ctx
}
, nettle
_
random
_
func @var
{
random
}
, struct sha1
_
ctx *@var
{
hash
}
, struct dsa
_
signature *@var
{
signature
}
)
@deftypefunx void dsa
_
sign
_
digest (const struct dsa
_
public
_
key *@var
{
pub
}
, const struct dsa
_
private
_
key *@var
{
key
}
, void *@var
{
random
_
ctx
}
, nettle
_
random
_
func @var
{
random
}
, const uint8
_
t *@var
{
digest
}
, struct dsa
_
signature *@var
{
signature
}
)
Creates a signature from the given hash context or digest.
@var
{
random
_
ctx
}
and @var
{
random
}
is a randomness generator.
@code
{
random(random
_
ctx, length, dst)
}
should generate @code
{
length
}
random octets and store them at @code
{
dst
}
. For advice, see
@xref
{
Randomness
}
.
@end deftypefun
Verifying signatures is a little easier, since no randomness generator is
needed. The functions are
@deftypefun int dsa
_
verify (const struct dsa
_
public
_
key *@var
{
key
}
, struct sha1
_
ctx *@var
{
hash
}
, const struct dsa
_
signature *@var
{
signature
}
)
@deftypefunx int dsa
_
verify
_
digest (const struct dsa
_
public
_
key *@var
{
key
}
, const uint8
_
t *@var
{
digest
}
, const struct dsa
_
signature *@var
{
signature
}
)
Verifies a signature. Returns 1 if the signature is valid, otherwise 0.
@end deftypefun
Key generation uses mostly the same parameters as the corresponding
@acronym
{
RSA
}
function.
@deftypefun int dsa
_
generate
_
keypair (struct dsa
_
public
_
key *@var
{
pub
}
, struct dsa
_
private
_
key *@var
{
key
}
, void *@var
{
random
_
ctx
}
, nettle
_
random
_
func @var
{
random
}
, void *@var
{
progress
_
ctx
}
, nettle
_
progress
_
func @var
{
progress
}
, unsigned @var
{
bits
}
)
@var
{
pub
}
and @var
{
key
}
is where the resulting key pair is stored. The
structs should be initialized before you call this function.
@var
{
random
_
ctx
}
and @var
{
random
}
is a randomness generator.
@code
{
random(random
_
ctx, length, dst)
}
should generate @code
{
length
}
random octets and store them at @code
{
dst
}
. For advice, see
@xref
{
Randomness
}
.
@var
{
progress
}
and @var
{
progress
_
ctx
}
can be used to get callbacks
during the key generation process, in order to uphold an illusion of
progress. @var
{
progress
}
can be NULL, in that case there are no
callbacks.
@var
{
bits
}
is the desired size of @code
{
p
}
, in bits. To generate keys
that conform to the standard, you must use a value of the form @code
{
512
+ l*64
}
, for @code
{
0 <= l <= 8
}
. Keys smaller than 768 bits are not
considered secure, so you should probably stick to 1024. Non-standard
sizes are possible, in particular sizes larger than 1024 bits, although
@acronym
{
DSA
}
implementations can not in general be expected to support
such keys. Also note that using very large keys doesn't make much sense,
because the security is also limited by the size of the smaller prime
@code
{
q
}
, which is always 160 bits.
Returns 1 on success, and 0 on failure. The function will fail if
@var
{
bits
}
is too small.
@end deftypefun
@node Randomness, Miscellaneous functions, Public-key algorithms, Reference
@node Randomness, Miscellaneous functions, Public-key algorithms, Reference
@comment node-name, next, previous, up
@comment node-name, next, previous, up
@section Randomness
@section Randomness
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment