Revert, that was an incorrect change.
authorRichard Levitte <levitte@openssl.org>
Tue, 29 Oct 2002 04:34:43 +0000 (04:34 +0000)
committerRichard Levitte <levitte@openssl.org>
Tue, 29 Oct 2002 04:34:43 +0000 (04:34 +0000)
PR: 156

doc/crypto/DH_set_method.pod
doc/crypto/DSA_set_method.pod

index b49a50f8f588c297bd982201061706fdcff8d2c6..73261fc4675ddaeb4e0955fe17bdda840678f478 100644 (file)
@@ -8,6 +8,7 @@ DH_set_method, DH_new_method, DH_OpenSSL - select DH method
 =head1 SYNOPSIS
 
  #include <openssl/dh.h>
+ #include <openssl/engine.h>
 
  void DH_set_default_method(const DH_METHOD *meth);
 
@@ -15,7 +16,7 @@ DH_set_method, DH_new_method, DH_OpenSSL - select DH method
 
  int DH_set_method(DH *dh, const DH_METHOD *meth);
 
- DH *DH_new_method(DH_METHOD *meth);
+ DH *DH_new_method(ENGINE *engine);
 
  const DH_METHOD *DH_OpenSSL(void);
 
index 9bd9ad3ee87c57ecc0d5ca8a848de5211604df84..bc3cfb1f0a78d419d79fd43cabd7a84f577194f3 100644 (file)
@@ -8,6 +8,7 @@ DSA_set_method, DSA_new_method, DSA_OpenSSL - select DSA method
 =head1 SYNOPSIS
 
  #include <openssl/dsa.h>
+ #include <openssl/engine.h>
 
  void DSA_set_default_method(const DSA_METHOD *meth);
 
@@ -15,7 +16,7 @@ DSA_set_method, DSA_new_method, DSA_OpenSSL - select DSA method
 
  int DSA_set_method(DSA *dsa, const DSA_METHOD *meth);
 
- DSA *DSA_new_method(DSA_METHOD *meth);
+ DSA *DSA_new_method(ENGINE *engine);
 
  DSA_METHOD *DSA_OpenSSL(void);