wolfssl/cyassl/openssl/dsa.h

35 lines
356 B
C
Raw Normal View History

2012-04-27 03:27:27 +04:00
/* dsa.h for openSSL */
2011-02-05 22:14:47 +03:00
2012-04-27 03:27:27 +04:00
#ifndef CYASSL_DSA_H_
#define CYASSL_DSA_H_
#include <cyassl/openssl/ssl.h>
#include <cyassl/openssl/bn.h>
#ifdef __cplusplus
extern "C" {
#endif
struct CYASSL_DSA {
BIGNUM* p;
BIGNUM* q;
BIGNUM* g;
BIGNUM* pub_key;
BIGNUM* priv_key;
};
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* header */