init ssh changes

This commit is contained in:
toddouska
2012-04-26 16:27:27 -07:00
parent dd431dbeff
commit 81be167ee2
21 changed files with 718 additions and 35 deletions
+33 -1
View File
@@ -1,2 +1,34 @@
/* dsa.h for openssl */
/* dsa.h for openSSL */
#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 */