mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 10:08:33 -04:00
Update WolfSSL library to the latest version.
This commit is contained in:
parent
8af1ad9bac
commit
5a6242fbd0
443 changed files with 70230 additions and 45414 deletions
63
FreeRTOS-Plus/Source/WolfSSL/swig/wolfssl.i
Normal file
63
FreeRTOS-Plus/Source/WolfSSL/swig/wolfssl.i
Normal file
|
@ -0,0 +1,63 @@
|
|||
/* wolfssl.i
|
||||
*
|
||||
* Copyright (C) 2006-2015 wolfSSL Inc.
|
||||
*
|
||||
* This file is part of wolfSSL. (formerly known as CyaSSL)
|
||||
*
|
||||
* wolfSSL is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* wolfSSL is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
%module wolfssl
|
||||
%{
|
||||
#include <wolfssl/ssl.h>
|
||||
#include <wolfssl/wolfcrypt/rsa.h>
|
||||
|
||||
/* defn adds */
|
||||
char* wolfSSL_error_string(int err);
|
||||
int wolfSSL_swig_connect(WOLFSSL*, const char* server, int port);
|
||||
RNG* GetRng(void);
|
||||
RsaKey* GetRsaPrivateKey(const char* file);
|
||||
void FillSignStr(unsigned char*, const char*, int);
|
||||
%}
|
||||
|
||||
|
||||
WOLFSSL_METHOD* wolfTLSv1_2_client_method(void);
|
||||
WOLFSSL_CTX* wolfSSL_CTX_new(WOLFSSL_METHOD*);
|
||||
int wolfSSL_CTX_load_verify_locations(WOLFSSL_CTX*, const char*, const char*);
|
||||
WOLFSSL* wolfSSL_new(WOLFSSL_CTX*);
|
||||
int wolfSSL_get_error(WOLFSSL*, int);
|
||||
int wolfSSL_write(WOLFSSL*, const char*, int);
|
||||
int wolfSSL_Debugging_ON(void);
|
||||
int wolfSSL_Init(void);
|
||||
char* wolfSSL_error_string(int);
|
||||
int wolfSSL_swig_connect(WOLFSSL*, const char* server, int port);
|
||||
|
||||
int wc_RsaSSL_Sign(const unsigned char* in, int inLen, unsigned char* out, int outLen, RsaKey* key, RNG* rng);
|
||||
|
||||
int wc_RsaSSL_Verify(const unsigned char* in, int inLen, unsigned char* out, int outLen, RsaKey* key);
|
||||
|
||||
RNG* GetRng(void);
|
||||
RsaKey* GetRsaPrivateKey(const char* file);
|
||||
void FillSignStr(unsigned char*, const char*, int);
|
||||
|
||||
%include carrays.i
|
||||
%include cdata.i
|
||||
%array_class(unsigned char, byteArray);
|
||||
int wolfSSL_read(WOLFSSL*, unsigned char*, int);
|
||||
|
||||
|
||||
#define SSL_FAILURE 0
|
||||
#define SSL_SUCCESS 1
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue