8000 Adds build for OpenSSL 1.1.1c · python/cpython-bin-deps@dcf1bc5 · GitHub
[go: up one dir, main page]

Skip to content

Commit dcf1bc5

Browse files
committed
Adds build for OpenSSL 1.1.1c
1 parent e754a82 commit dcf1bc5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+56
-48
lines changed

amd64/include/openssl/err.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
2+
* Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved.
33
*
44
* Licensed under the OpenSSL license (the "License"). You may not use
55
* this file except in compliance with the License. You can obtain a copy
@@ -37,6 +37,7 @@ extern "C" {
3737
# define ERR_TXT_STRING 0x02
3838

3939
# define ERR_FLAG_MARK 0x01
40+
# define ERR_FLAG_CLEAR 0x02
4041

4142
# define ERR_NUM_ERRORS 16
4243
typedef struct err_state_st {

amd64/include/openssl/evp.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -995,6 +995,7 @@ int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len);
995995
int EVP_PKEY_set_alias_type(EVP_PKEY *pkey, int type);
996996
# ifndef OPENSSL_NO_ENGINE
997997
int EVP_PKEY_set1_engine(EVP_PKEY *pkey, ENGINE *e);
998+
ENGINE *EVP_PKEY_get0_engine(const EVP_PKEY *pkey);
998999
# endif
9991000
int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key);
10001001
void *EVP_PKEY_get0(const EVP_PKEY *pkey);

amd64/include/openssl/obj_mac.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4280,7 +4280,7 @@
42804280

42814281
#define SN_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 "id-tc26-wrap-gostr3412-2015-kuznyechik-kexp15"
42824282
#define NID_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 1183
4283-
#define OBJ_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 OBJ_id_tc26_wrap_gostr3412_2015_magma,1L
4283+
#define OBJ_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 OBJ_id_tc26_wrap_gostr3412_2015_kuznyechik,1L
42844284

42854285
#define SN_id_tc26_constants "id-tc26-constants"
42864286
#define NID_id_tc26_constants 994

amd64/include/openssl/ocsp.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
2+
* Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
33
*
44
* Licensed under the OpenSSL license (the "License"). You may not use
55
* this file except in compliance with the License. You can obtain a copy
@@ -229,8 +229,8 @@ int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs,
229229
int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath,
230230
int *pssl);
231231

232-
int OCSP_id_issuer_cmp(OCSP_CERTID *a, OCSP_CERTID *b);
233-
int OCSP_id_cmp(OCSP_CERTID *a, OCSP_CERTID *b);
232+
int OCSP_id_issuer_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
233+
int OCSP_id_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
234234

235235
int OCSP_request_onereq_count(OCSP_REQUEST *req);
236236
OCSP_ONEREQ *OCSP_request_onereq_get0(OCSP_REQUEST *req, int i);

amd64/include/openssl/opensslv.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved.
2+
* Copyright 1999-2019 The OpenSSL Project Authors. All Rights Reserved.
33
*
44
* Licensed under the OpenSSL license (the "License"). You may not use
55
* this file except in compliance with the License. You can obtain a copy
@@ -39,8 +39,8 @@ extern "C" {
3939
* (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for
4040
* major minor fix final patch/beta)
4141
*/
42-
# define OPENSSL_VERSION_NUMBER 0x1010102fL
43-
# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1b 26 Feb 2019"
42+
# define OPENSSL_VERSION_NUMBER 0x1010103fL
43+
# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1c 28 May 2019"
4444

4545
/*-
4646
* The macros below are to be used for shared library (.so, .dll, ...)

amd64/include/openssl/ssl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2139,7 +2139,7 @@ size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx);
21392139
# define SSL_cache_hit(s) SSL_session_reused(s)
21402140
# endif
21412141

2142-
__owur int SSL_session_reused(SSL *s);
2142+
__owur int SSL_session_reused(const SSL *s);
21432143
__owur int SSL_is_server(const SSL *s);
21442144

21452145
__owur __owur SSL_CONF_CTX *SSL_CONF_CTX_new(void);

amd64/include/openssl/x509v3.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved.
2+
* Copyright 1999-2019 The OpenSSL Project Authors. All Rights Reserved.
33
*
44
* Licensed under the OpenSSL license (the "License"). You may not use
55
* this file except in compliance with the License. You can obtain a copy
@@ -497,10 +497,10 @@ DECLARE_ASN1_FUNCTIONS(OTHERNAME)
497497
DECLARE_ASN1_FUNCTIONS(EDIPARTYNAME)
498498
int OTHERNAME_cmp(OTHERNAME *a, OTHERNAME *b);
499499
void GENERAL_NAME_set0_value(GENERAL_NAME *a, int type, void *value);
500-
void *GENERAL_NAME_get0_value(GENERAL_NAME *a, int *ptype);
500+
void *GENERAL_NAME_get0_value(const GENERAL_NAME *a, int *ptype);
501501
int GENERAL_NAME_set0_othername(GENERAL_NAME *gen,
502502
ASN1_OBJECT *oid, ASN1_TYPE *value);
503-
int GENERAL_NAME_get0_otherName(GENERAL_NAME *gen,
503+
int GENERAL_NAME_get0_otherName(const GENERAL_NAME *gen,
504504
ASN1_OBJECT **poid, ASN1_TYPE **pvalue);
505505

506506
char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method,

amd64/libcrypto-1_1.dll

2 KB
Binary file not shown.

amd64/libcrypto-1_1.pdb

24 KB
Binary file not shown.

amd64/libcrypto.lib

232 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)
0