Document DSA and SHA.
New function BN_pseudo_rand(). Use BN_prime_checks_size(BN_num_bits(w)) rounds of Miller-Rabin when generating DSA primes (why not use BN_is_prime()?)
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
=head1 NAME
|
||||
|
||||
RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specific data to RSA structures.
|
||||
RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specific data to RSA structures
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
@@ -13,7 +13,7 @@ RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specifi
|
||||
CRYPTO_EX_dup *dup_func,
|
||||
CRYPTO_EX_free *free_func);
|
||||
|
||||
int RSA_set_ex_data(RSA *r,int idx,void *arg);
|
||||
int RSA_set_ex_data(RSA *r, int idx, void *arg);
|
||||
|
||||
void *RSA_get_ex_data(RSA *r, int idx);
|
||||
|
||||
@@ -22,6 +22,7 @@ RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specifi
|
||||
|
||||
void free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
|
||||
int idx, long argl, void *argp);
|
||||
|
||||
int dup_func(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d,
|
||||
int idx, long argl, void *argp);
|
||||
|
||||
@@ -115,7 +116,7 @@ L<rsa(3)|rsa(3)>
|
||||
|
||||
=head1 HISTORY
|
||||
|
||||
RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data are
|
||||
RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data() are
|
||||
available since SSLeay 0.9.0.
|
||||
|
||||
=cut
|
||||
|
Reference in New Issue
Block a user