[修改] 增加freeRTOS

1. 版本FreeRTOSv202212.01,命名为kernel;
This commit is contained in:
2023-05-06 16:43:01 +00:00
commit a345df017b
20944 changed files with 11094377 additions and 0 deletions

View File

@ -0,0 +1,3 @@
/* asn1.h for openssl */
#include <wolfssl/openssl/asn1.h>

View File

@ -0,0 +1,4 @@
/* bio.h for openssl */
#include <wolfssl/openssl/bio.h>

View File

@ -0,0 +1,3 @@
/* bn.h for openssl */
#include <wolfssl/openssl/bn.h>

View File

@ -0,0 +1,3 @@
/* conf.h for openssl */
#include <wolfssl/openssl/conf.h>

View File

@ -0,0 +1,4 @@
/* crypto.h for openSSL */
#include <wolfssl/openssl/crypto.h>

View File

@ -0,0 +1,28 @@
/* des.h
*
* Copyright (C) 2006-2020 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
* 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-1335, USA
*/
/* des.h defines mini des openssl compatibility layer
*
*/
#include <wolfssl/openssl/des.h>

View File

@ -0,0 +1,4 @@
/* dh.h for openSSL */
#include <wolfssl/openssl/dh.h>

View File

@ -0,0 +1,12 @@
/* dsa.h for openSSL */
#ifndef CYASSL_OPENSSL_DSA
#define CYASSL_OPENSSL_DSA
#define CyaSSL_DSA_LoadDer wolfSSL_DSA_LoadDer
#define CyaSSL_DSA_do_sign wolfSSL_DSA_do_sign
#include <cyassl/openssl/ssl.h>
#include <wolfssl/openssl/dsa.h>
#endif

View File

@ -0,0 +1,3 @@
/* ec.h for openssl */
#include <wolfssl/openssl/ec.h>

View File

@ -0,0 +1,3 @@
/* ec25519.h */
#include <wolfssl/openssl/ec25519.h>

View File

@ -0,0 +1,3 @@
/* ec448.h */
#include <wolfssl/openssl/ec448.h>

View File

@ -0,0 +1,3 @@
/* ecdh.h for openssl */
#include <wolfssl/openssl/ecdh.h>

View File

@ -0,0 +1,3 @@
/* ecdsa.h for openssl */
#include <wolfssl/openssl/ecdsa.h>

View File

@ -0,0 +1,3 @@
/* ed25519.h */
#include <wolfssl/openssl/ed25519.h>

View File

@ -0,0 +1,3 @@
/* ed448.h */
#include <wolfssl/openssl/ed448.h>

View File

@ -0,0 +1,5 @@
/* engine.h for libcurl */
#include <wolfssl/openssl/engine.h>

View File

@ -0,0 +1,3 @@
/* err.h for openssl */
#include <wolfssl/openssl/err.h>

View File

@ -0,0 +1,41 @@
/* evp.h
*
* Copyright (C) 2006-2020 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
* 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-1335, USA
*/
/* evp.h defines mini evp openssl compatibility layer
*
*/
#ifndef CYASSL_OPENSSL_EVP
#define CYASSL_OPENSSL_EVP
#define CyaSSL_StoreExternalIV wolfSSL_StoreExternalIV
#define CyaSSL_SetInternalIV wolfSSL_SetInternalIV
#define CYASSL_EVP_MD WOLFSSL_EVP_MD
#define CyaSSL_EVP_X_STATE wolfSSL_EVP_X_STATE
#define CyaSSL_EVP_X_STATE_LEN wolfSSL_EVP_X_STATE_LEN
#define CyaSSL_3des_iv wolfSSL_3des_iv
#define CyaSSL_aes_ctr_iv wolfSSL_aes_ctr_iv
#include <wolfssl/openssl/evp.h>
#endif

View File

@ -0,0 +1,28 @@
/* hmac.h
*
* Copyright (C) 2006-2020 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
* 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-1335, USA
*/
/* hmac.h defines mini hamc openssl compatibility layer
*
*/
#include <wolfssl/openssl/hmac.h>

View File

@ -0,0 +1,42 @@
# vim:ft=automake
# All paths should be given relative to the root
nobase_include_HEADERS+= \
cyassl/openssl/asn1.h \
cyassl/openssl/bio.h \
cyassl/openssl/bn.h \
cyassl/openssl/conf.h \
cyassl/openssl/crypto.h \
cyassl/openssl/des.h \
cyassl/openssl/dh.h \
cyassl/openssl/dsa.h \
cyassl/openssl/ecdsa.h \
cyassl/openssl/ecdh.h \
cyassl/openssl/ec.h \
cyassl/openssl/ec25519.h \
cyassl/openssl/ed25519.h \
cyassl/openssl/ec448.h \
cyassl/openssl/ed448.h \
cyassl/openssl/engine.h \
cyassl/openssl/err.h \
cyassl/openssl/evp.h \
cyassl/openssl/hmac.h \
cyassl/openssl/lhash.h \
cyassl/openssl/md4.h \
cyassl/openssl/md5.h \
cyassl/openssl/ripemd.h \
cyassl/openssl/ocsp.h \
cyassl/openssl/opensslconf.h \
cyassl/openssl/opensslv.h \
cyassl/openssl/ossl_typ.h \
cyassl/openssl/pem.h \
cyassl/openssl/pkcs12.h \
cyassl/openssl/rand.h \
cyassl/openssl/rsa.h \
cyassl/openssl/sha.h \
cyassl/openssl/ssl23.h \
cyassl/openssl/ssl.h \
cyassl/openssl/stack.h \
cyassl/openssl/ui.h \
cyassl/openssl/x509.h \
cyassl/openssl/x509v3.h

View File

@ -0,0 +1,3 @@
/* lhash.h for openSSL */
#include <wolfssl/openssl/lhash.h>

View File

@ -0,0 +1,3 @@
/* md4.h for libcurl */
#include <wolfssl/openssl/md4.h>

View File

@ -0,0 +1,5 @@
/* md5.h for openssl */
#include <wolfssl/openssl/md5.h>

View File

@ -0,0 +1,3 @@
/* ocsp.h for libcurl */
#include <wolfssl/openssl/ocsp.h>

View File

@ -0,0 +1,3 @@
/* opensslconf.h for openSSL */
#include <wolfssl/openssl/opensslconf.h>

View File

@ -0,0 +1,3 @@
/* opensslv.h compatibility */
#include <wolfssl/openssl/opensslv.h>

View File

@ -0,0 +1,3 @@
/* ossl_typ.h for openssl */
#include <wolfssl/openssl/ossl_typ.h>

View File

@ -0,0 +1,3 @@
/* pem.h for openssl */
#include <wolfssl/openssl/pem.h>

View File

@ -0,0 +1,3 @@
/* pkcs12.h for openssl */
#include <wolfssl/openssl/pkcs12.h>

View File

@ -0,0 +1,3 @@
/* rand.h for openSSL */
#include <wolfssl/openssl/ssl.h>

View File

@ -0,0 +1,3 @@
/* ripemd.h for openssl */
#include <wolfssl/openssl/ripemd.h>

View File

@ -0,0 +1,12 @@
/* rsa.h for openSSL */
#ifndef CYASSL_OPENSSL_RSA
#define CYASSL_OPENSSL_RSA
#define CyaSSL_RSA_GenAdd wolfSSL_RSA_GenAdd
#define CyaSSL_RSA_LoadDer wolfSSL_RSA_LoadDer
#include <cyassl/openssl/ssl.h>
#include <wolfssl/openssl/rsa.h>
#endif

View File

@ -0,0 +1,3 @@
/* sha.h for openssl */
#include <wolfssl/openssl/sha.h>

View File

@ -0,0 +1,34 @@
/* ssl.h
*
* Copyright (C) 2006-2020 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
* 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-1335, USA
*/
/* ssl.h defines openssl compatibility layer
*
*/
#ifndef CYASSL_OPENSSL_H_
#define CYASSL_OPENSSL_H_
#include <cyassl/ssl.h>
#include <wolfssl/openssl/ssl.h>
#endif

View File

@ -0,0 +1,3 @@
/* ssl23.h for openssl */
#include <wolfssl/openssl/ssl23.h>

View File

@ -0,0 +1,3 @@
/* stack.h for openssl */
#include <wolfssl/openssl/stack.h>

View File

@ -0,0 +1,3 @@
/* ui.h for openssl */
#include <wolfssl/openssl/ui.h>

View File

@ -0,0 +1,3 @@
/* x509.h for openssl */
#include <wolfssl/openssl/ssl.h>

View File

@ -0,0 +1,3 @@
/* x509v3.h for openssl */
#include <wolfssl/openssl/x509v3.h>