libdes manpage.
[oweals/openssl.git] / doc / crypto / DSA_generate_parameters.pod
index b40b94134551cdb45cc86a2b75e97d96bc13d6e0..43f60b0eb955bc4bcb84b8d577855b85cb2cf4fe 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
-DSA_generate_parameters - Generate DSA parameters
+DSA_generate_parameters - generate DSA parameters
 
 =head1 SYNOPSIS
 
@@ -10,7 +10,7 @@ DSA_generate_parameters - Generate DSA parameters
 
  DSA *DSA_generate_parameters(int bits, unsigned char *seed,
                 int seed_len, int *counter_ret, unsigned long *h_ret,
-               void (*callback)(), void *cb_arg);
+               void (*callback)(int, int, void *), void *cb_arg);
 
 =head1 DESCRIPTION
 
@@ -62,7 +62,7 @@ B<callback(0, counter, cb_arg)> is called.
 =item *
 
 When a candidate for p has passed the test by trial division,
-B<callback(1, -1 , cb_arg)> is called.
+B<callback(1, -1, cb_arg)> is called.
 While it is tested by the Miller-Rabin primality test,
 B<callback(1, i, cb_arg)> is called in the outer loop
 (once for each witness that confirms that the candidate may be prime).