mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
54 lines
1.7 KiB
C
54 lines
1.7 KiB
C
/************************************************************************************
|
|
Copyright (C) 2019 MariaDB Corporation 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 <http://www.gnu.org/licenses>
|
|
or write to the Free Software Foundation, Inc.,
|
|
51 Franklin St., Fifth Floor, Boston, MA 02110, USA
|
|
|
|
*************************************************************************************/
|
|
|
|
#pragma once
|
|
#include <windows.h>
|
|
#include <wincrypt.h>
|
|
|
|
extern SECURITY_STATUS schannel_create_store(
|
|
const char* CAFile,
|
|
const char* CAPath,
|
|
const char* CRLFile,
|
|
const char* CRLPath,
|
|
HCERTSTORE* store,
|
|
char* errmsg,
|
|
size_t errmsg_len
|
|
);
|
|
|
|
extern SECURITY_STATUS schannel_verify_server_certificate(
|
|
const CERT_CONTEXT* cert,
|
|
HCERTSTORE store,
|
|
BOOL check_revocation,
|
|
const char* server_name,
|
|
BOOL check_server_name,
|
|
char* errmsg,
|
|
size_t errmsg_len);
|
|
|
|
extern void schannel_free_store(HCERTSTORE store);
|
|
|
|
extern CERT_CONTEXT* schannel_create_cert_context(
|
|
char* cert_file,
|
|
char* key_file,
|
|
char* errmsg,
|
|
size_t errmsg_len);
|
|
|
|
extern void schannel_free_cert_context(const CERT_CONTEXT* cert);
|
|
|