A small detail: since 0.9.7, DH_new_method() and DSA_new_method()
don't take an ENGINE* as parameter any more. PR: 156
This commit is contained in:
parent
6f7ba4be1f
commit
bbec79a0c1
@ -8,7 +8,6 @@ DH_set_method, DH_new_method, DH_OpenSSL - select DH method
|
|||||||
=head1 SYNOPSIS
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
#include <openssl/dh.h>
|
#include <openssl/dh.h>
|
||||||
#include <openssl/engine.h>
|
|
||||||
|
|
||||||
void DH_set_default_method(const DH_METHOD *meth);
|
void DH_set_default_method(const DH_METHOD *meth);
|
||||||
|
|
||||||
@ -16,7 +15,7 @@ DH_set_method, DH_new_method, DH_OpenSSL - select DH method
|
|||||||
|
|
||||||
int DH_set_method(DH *dh, const DH_METHOD *meth);
|
int DH_set_method(DH *dh, const DH_METHOD *meth);
|
||||||
|
|
||||||
DH *DH_new_method(ENGINE *engine);
|
DH *DH_new_method(DH_METHOD *meth);
|
||||||
|
|
||||||
const DH_METHOD *DH_OpenSSL(void);
|
const DH_METHOD *DH_OpenSSL(void);
|
||||||
|
|
||||||
|
@ -8,7 +8,6 @@ DSA_set_method, DSA_new_method, DSA_OpenSSL - select DSA method
|
|||||||
=head1 SYNOPSIS
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
#include <openssl/dsa.h>
|
#include <openssl/dsa.h>
|
||||||
#include <openssl/engine.h>
|
|
||||||
|
|
||||||
void DSA_set_default_method(const DSA_METHOD *meth);
|
void DSA_set_default_method(const DSA_METHOD *meth);
|
||||||
|
|
||||||
@ -16,7 +15,7 @@ DSA_set_method, DSA_new_method, DSA_OpenSSL - select DSA method
|
|||||||
|
|
||||||
int DSA_set_method(DSA *dsa, const DSA_METHOD *meth);
|
int DSA_set_method(DSA *dsa, const DSA_METHOD *meth);
|
||||||
|
|
||||||
DSA *DSA_new_method(ENGINE *engine);
|
DSA *DSA_new_method(DSA_METHOD *meth);
|
||||||
|
|
||||||
DSA_METHOD *DSA_OpenSSL(void);
|
DSA_METHOD *DSA_OpenSSL(void);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user