FreeRDP/include/freerdp/crypto/tls.h

79 lines
2.3 KiB
C
Raw Normal View History

2011-07-04 01:29:09 +04:00
/**
2012-02-21 09:56:55 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
2011-07-04 01:29:09 +04:00
* Transport Layer Security
*
2012-02-21 09:56:55 +04:00
* Copyright 2011-2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
2011-07-04 01:29:09 +04:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2012-02-21 09:56:55 +04:00
#ifndef FREERDP_CRYPTO_TLS_H
#define FREERDP_CRYPTO_TLS_H
2011-07-04 01:29:09 +04:00
#include "crypto.h"
#include "certificate.h"
#include <winpr/crt.h>
#include <winpr/sspi.h>
2011-07-04 01:29:09 +04:00
#include <openssl/ssl.h>
#include <openssl/err.h>
2012-02-21 09:56:55 +04:00
#include <freerdp/api.h>
#include <freerdp/types.h>
#include <winpr/stream.h>
2011-07-04 01:29:09 +04:00
typedef struct rdp_tls rdpTls;
struct rdp_tls
{
SSL* ssl;
BIO* bio;
void* tsg;
2011-07-04 01:29:09 +04:00
int sockfd;
SSL_CTX* ctx;
2012-09-24 12:40:32 +04:00
BYTE* PublicKey;
BIO_METHOD* methods;
2012-09-24 12:40:32 +04:00
DWORD PublicKeyLength;
rdpSettings* settings;
SecPkgContext_Bindings* Bindings;
rdpCertificateStore* certificate_store;
char* hostname;
int port;
2011-07-04 01:29:09 +04:00
};
FREERDP_API BOOL tls_connect(rdpTls* tls);
FREERDP_API BOOL tls_accept(rdpTls* tls, const char* cert_file, const char* privatekey_file);
FREERDP_API BOOL tls_disconnect(rdpTls* tls);
FREERDP_API int tls_read(rdpTls* tls, BYTE* data, int length);
FREERDP_API int tls_write(rdpTls* tls, BYTE* data, int length);
FREERDP_API int tls_write_all(rdpTls* tls, BYTE* data, int length);
FREERDP_API int tls_wait_read(rdpTls* tls);
FREERDP_API int tls_wait_write(rdpTls* tls);
FREERDP_API BOOL tls_match_hostname(char *pattern, int pattern_length, char *hostname);
FREERDP_API BOOL tls_verify_certificate(rdpTls* tls, CryptoCert cert, char* hostname, int port);
FREERDP_API void tls_print_certificate_error(char* hostname, char* fingerprint, char* hosts_file);
2012-02-21 09:56:55 +04:00
FREERDP_API void tls_print_certificate_name_mismatch_error(char* hostname, char* common_name, char** alt_names, int alt_names_count);
FREERDP_API BOOL tls_print_error(char* func, SSL* connection, int value);
2012-02-21 09:56:55 +04:00
FREERDP_API rdpTls* tls_new(rdpSettings* settings);
FREERDP_API void tls_free(rdpTls* tls);
2011-07-04 01:29:09 +04:00
2012-02-21 09:56:55 +04:00
#endif /* FREERDP_CRYPTO_TLS_H */