Initial version
This commit is contained in:
@ -0,0 +1,3 @@
|
||||
/* asn1.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/asn1.h>
|
@ -0,0 +1,4 @@
|
||||
/* bio.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/bio.h>
|
||||
|
@ -0,0 +1,3 @@
|
||||
/* bn.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/bn.h>
|
@ -0,0 +1,3 @@
|
||||
/* conf.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/conf.h>
|
@ -0,0 +1,4 @@
|
||||
/* crypto.h for openSSL */
|
||||
|
||||
#include <wolfssl/openssl/crypto.h>
|
||||
|
@ -0,0 +1,27 @@
|
||||
/* des.h
|
||||
*
|
||||
* Copyright (C) 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
|
||||
*/
|
||||
|
||||
|
||||
/* des.h defines mini des openssl compatibility layer
|
||||
*
|
||||
*/
|
||||
|
||||
#include <wolfssl/openssl/des.h>
|
@ -0,0 +1,4 @@
|
||||
/* dh.h for openSSL */
|
||||
|
||||
|
||||
#include <wolfssl/openssl/dh.h>
|
@ -0,0 +1,3 @@
|
||||
/* dsa.h for openSSL */
|
||||
|
||||
#include <wolfssl/openssl/dsa.h>
|
@ -0,0 +1,3 @@
|
||||
/* ec.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/ec.h>
|
@ -0,0 +1,3 @@
|
||||
/* ecdsa.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/ecdsa.h>
|
@ -0,0 +1,5 @@
|
||||
/* engine.h for libcurl */
|
||||
|
||||
#include <wolfssl/openssl/engine.h>
|
||||
|
||||
|
@ -0,0 +1,3 @@
|
||||
/* err.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/err.h>
|
@ -0,0 +1,27 @@
|
||||
/* evp.h
|
||||
*
|
||||
* Copyright (C) 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
|
||||
*/
|
||||
|
||||
|
||||
/* evp.h defines mini evp openssl compatibility layer
|
||||
*
|
||||
*/
|
||||
|
||||
#include <wolfssl/openssl/evp.h>
|
@ -0,0 +1,27 @@
|
||||
/* hmac.h
|
||||
*
|
||||
* Copyright (C) 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
|
||||
*/
|
||||
|
||||
|
||||
/* hmac.h defines mini hamc openssl compatibility layer
|
||||
*
|
||||
*/
|
||||
|
||||
#include <wolfssl/openssl/hmac.h>
|
@ -0,0 +1,36 @@
|
||||
# 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/ec.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/ssl.h \
|
||||
cyassl/openssl/stack.h \
|
||||
cyassl/openssl/ui.h \
|
||||
cyassl/openssl/x509.h \
|
||||
cyassl/openssl/x509v3.h
|
@ -0,0 +1,3 @@
|
||||
/* lhash.h for openSSL */
|
||||
|
||||
#include <wolfssl/openssl/lhash.h>
|
@ -0,0 +1,3 @@
|
||||
/* md4.h for libcurl */
|
||||
|
||||
#include <wolfssl/openssl/md4.h>
|
@ -0,0 +1,5 @@
|
||||
/* md5.h for openssl */
|
||||
|
||||
|
||||
#include <wolfssl/openssl/md5.h>
|
||||
|
@ -0,0 +1,3 @@
|
||||
/* ocsp.h for libcurl */
|
||||
|
||||
#include <wolfssl/openssl/ocsp.h>
|
@ -0,0 +1,3 @@
|
||||
/* opensslconf.h for openSSL */
|
||||
|
||||
#include <wolfssl/openssl/opensslconf.h>
|
@ -0,0 +1,3 @@
|
||||
/* opensslv.h compatibility */
|
||||
|
||||
#include <wolfssl/openssl/opensslv.h>
|
@ -0,0 +1,3 @@
|
||||
/* ossl_typ.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/ossl_typ.h>
|
@ -0,0 +1,3 @@
|
||||
/* pem.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/pem.h>
|
@ -0,0 +1,3 @@
|
||||
/* pkcs12.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/pkcs12.h>
|
@ -0,0 +1,3 @@
|
||||
/* rand.h for openSSL */
|
||||
|
||||
#include <wolfssl/openssl/ssl.h>
|
@ -0,0 +1,3 @@
|
||||
/* ripemd.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/ripemd.h>
|
@ -0,0 +1,3 @@
|
||||
/* rsa.h for openSSL */
|
||||
|
||||
#include <wolfssl/openssl/rsa.h>
|
@ -0,0 +1,3 @@
|
||||
/* sha.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/sha.h>
|
@ -0,0 +1,27 @@
|
||||
/* ssl.h
|
||||
*
|
||||
* 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
|
||||
* a with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
|
||||
/* ssl.h defines openssl compatibility layer
|
||||
*
|
||||
*/
|
||||
|
||||
#include <wolfssl/openssl/ssl.h>
|
@ -0,0 +1,3 @@
|
||||
/* stack.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/stack.h>
|
@ -0,0 +1,3 @@
|
||||
/* ui.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/ui.h>
|
@ -0,0 +1,3 @@
|
||||
/* x509.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/ssl.h>
|
@ -0,0 +1,3 @@
|
||||
/* x509v3.h for openssl */
|
||||
|
||||
#include <wolfssl/openssl/x509v3.h>
|
Reference in New Issue
Block a user