From 35a201cc8ef0c3f5b2df88d2e528aabee1048348 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Fri, 30 Apr 2021 18:47:09 +0200 Subject: Initial/Final commit --- mariadb-connector-c-v_2.3.7/include/ma_secure.h | 45 +++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 mariadb-connector-c-v_2.3.7/include/ma_secure.h (limited to 'mariadb-connector-c-v_2.3.7/include/ma_secure.h') diff --git a/mariadb-connector-c-v_2.3.7/include/ma_secure.h b/mariadb-connector-c-v_2.3.7/include/ma_secure.h new file mode 100644 index 0000000..b380630 --- /dev/null +++ b/mariadb-connector-c-v_2.3.7/include/ma_secure.h @@ -0,0 +1,45 @@ +/************************************************************************************ + Copyright (C) 2012 Monty Program AB + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not see + or write to the Free Software Foundation, Inc., + 51 Franklin St., Fifth Floor, Boston, MA 02110, USA + + Part of this code includes code from the PHP project which + is freely available from http://www.php.net +*************************************************************************************/ +#ifndef _ma_secure_h_ +#define _ma_secure_h_ + +#ifdef HAVE_OPENSSL +#include +#include /* SSL and SSL_CTX */ +#include /* error reporting */ +#include + +struct MYSQL; + +size_t my_ssl_read(Vio *vio, uchar* buf, size_t size); +int my_ssl_close(Vio *vio); +size_t my_ssl_write(Vio *vio, const uchar* buf, size_t size); +SSL *my_ssl_init(MYSQL *mysql); +int my_ssl_connect(SSL *ssl); +int my_ssl_verify_server_cert(SSL *ssl); +int ma_ssl_verify_fingerprint(SSL *ssl); + +int my_ssl_start(MYSQL *mysql); +void my_ssl_end(void); + +#endif /* HAVE_OPENSSL */ +#endif /* _ma_secure_h_ */ -- cgit v1.2.3