wolfssl/cyassl/openssl/dh.h

33 lines
343 B
C
Raw Normal View History

2012-04-26 18:27:27 -05:00
/* dh.h for openSSL */
2011-02-05 13:14:47 -06:00
2012-04-26 18:27:27 -05:00
#ifndef CYASSL_DH_H_
#define CYASSL_DH_H_
#include <cyassl/openssl/ssl.h>
#include <cyassl/openssl/bn.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct CYASSL_DH {
BIGNUM* p;
BIGNUM* g;
} CYASSL_DH;
typedef CYASSL_DH DH;
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* header */