A library for setting up Secure Socket Layer (SSL) connections and verifying remote hosts using certificates. Contains only the source files for mbed platform implementation of the library.
Dependents: HTTPClient-SSL HTTPClient-SSL HTTPClient-SSL HTTPClient-SSL
cyassl/openssl/crypto.h@0:b86d15c6ba29, 2015-01-19 (annotated)
- Committer:
- Vanger
- Date:
- Mon Jan 19 21:45:42 2015 +0000
- Revision:
- 0:b86d15c6ba29
Updated CyaSSL Library to 3.3.0. Changed Settings and functions to be implemented for mbed platforms
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Vanger | 0:b86d15c6ba29 | 1 | /* crypto.h for openSSL */ |
Vanger | 0:b86d15c6ba29 | 2 | |
Vanger | 0:b86d15c6ba29 | 3 | #ifndef CYASSL_CRYPTO_H_ |
Vanger | 0:b86d15c6ba29 | 4 | #define CYASSL_CRYPTO_H_ |
Vanger | 0:b86d15c6ba29 | 5 | |
Vanger | 0:b86d15c6ba29 | 6 | |
Vanger | 0:b86d15c6ba29 | 7 | #include <cyassl/ctaocrypt/settings.h> |
Vanger | 0:b86d15c6ba29 | 8 | |
Vanger | 0:b86d15c6ba29 | 9 | #ifdef YASSL_PREFIX |
Vanger | 0:b86d15c6ba29 | 10 | #include "prefix_crypto.h" |
Vanger | 0:b86d15c6ba29 | 11 | #endif |
Vanger | 0:b86d15c6ba29 | 12 | |
Vanger | 0:b86d15c6ba29 | 13 | |
Vanger | 0:b86d15c6ba29 | 14 | CYASSL_API const char* CyaSSLeay_version(int type); |
Vanger | 0:b86d15c6ba29 | 15 | CYASSL_API unsigned long CyaSSLeay(void); |
Vanger | 0:b86d15c6ba29 | 16 | |
Vanger | 0:b86d15c6ba29 | 17 | #define SSLeay_version CyaSSLeay_version |
Vanger | 0:b86d15c6ba29 | 18 | #define SSLeay CyaSSLeay |
Vanger | 0:b86d15c6ba29 | 19 | |
Vanger | 0:b86d15c6ba29 | 20 | |
Vanger | 0:b86d15c6ba29 | 21 | #define SSLEAY_VERSION 0x0090600fL |
Vanger | 0:b86d15c6ba29 | 22 | #define SSLEAY_VERSION_NUMBER SSLEAY_VERSION |
Vanger | 0:b86d15c6ba29 | 23 | |
Vanger | 0:b86d15c6ba29 | 24 | |
Vanger | 0:b86d15c6ba29 | 25 | #endif /* header */ |
Vanger | 0:b86d15c6ba29 | 26 |