File indexing completed on 2025-01-18 10:05:48
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef OPENSSL_PROV_SSL_H
0011 # define OPENSSL_PROV_SSL_H
0012 # pragma once
0013
0014 # ifdef __cplusplus
0015 extern "C" {
0016 # endif
0017
0018
0019
0020 # define SSL_MAX_MASTER_KEY_LENGTH 48
0021
0022
0023 # define SSL3_VERSION 0x0300
0024 # define TLS1_VERSION 0x0301
0025 # define TLS1_1_VERSION 0x0302
0026 # define TLS1_2_VERSION 0x0303
0027 # define TLS1_3_VERSION 0x0304
0028 # define DTLS1_VERSION 0xFEFF
0029 # define DTLS1_2_VERSION 0xFEFD
0030 # define DTLS1_BAD_VER 0x0100
0031
0032
0033 # define OSSL_QUIC1_VERSION 0x0000001
0034
0035 # ifdef __cplusplus
0036 }
0037 # endif
0038 #endif