Skip to content

Commit 6fabb05

Browse files
author
Git for Windows Build Agent
committed
Update 3 packages
libopenssl (3.5.4-1 -> 3.5.5-1) mingw-w64-i686-openssl (3.5.4-1 -> 3.5.5-1) openssl (3.5.4-1 -> 3.5.5-1) Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
1 parent acbb393 commit 6fabb05

File tree

6,858 files changed

+18053
-17600
lines changed

Some content is hidden

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

6,858 files changed

+18053
-17600
lines changed

etc/rebase.db.i386

0 Bytes
Binary file not shown.

mingw32/bin/c_rehash

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env perl
22

33
# WARNING: do not edit!
4-
# Generated by Makefile from ../openssl-3.5.4/tools/c_rehash.in
4+
# Generated by Makefile from ../openssl-3.5.5/tools/c_rehash.in
55
# Copyright 1999-2025 The OpenSSL Project Authors. All Rights Reserved.
66
#
77
# Licensed under the Apache License 2.0 (the "License"). You may not use
@@ -193,6 +193,7 @@ sub compute_hash {
193193
print STDERR "Cannot compute hash on '$fname'\n";
194194
return;
195195
}
196+
binmode($fh, ":crlf");
196197
}
197198
return (<$fh>, <$fh>);
198199
}

mingw32/bin/libcrypto-3.dll

4 KB
Binary file not shown.

mingw32/bin/libssl-3.dll

1 KB
Binary file not shown.

mingw32/bin/openssl.exe

1 KB
Binary file not shown.

mingw32/etc/ssl/misc/CA.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Wrapper around the ca to make it easier to use
1111
#
1212
# WARNING: do not edit!
13-
# Generated by Makefile from ../openssl-3.5.4/apps/CA.pl.in
13+
# Generated by Makefile from ../openssl-3.5.5/apps/CA.pl.in
1414

1515
use strict;
1616
use warnings;

mingw32/etc/ssl/misc/tsget

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sub create_curl {
4747
$curl->setopt(CURLOPT_VERBOSE, 1) if $options{d};
4848
$curl->setopt(CURLOPT_FAILONERROR, 1);
4949
$curl->setopt(CURLOPT_USERAGENT,
50-
"OpenTSA tsget.pl/openssl-3.5.4");
50+
"OpenTSA tsget.pl/openssl-3.5.5");
5151

5252
# Options for POST method.
5353
$curl->setopt(CURLOPT_UPLOAD, 1);

mingw32/etc/ssl/misc/tsget.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sub create_curl {
4747
$curl->setopt(CURLOPT_VERBOSE, 1) if $options{d};
4848
$curl->setopt(CURLOPT_FAILONERROR, 1);
4949
$curl->setopt(CURLOPT_USERAGENT,
50-
"OpenTSA tsget.pl/openssl-3.5.4");
50+
"OpenTSA tsget.pl/openssl-3.5.5");
5151

5252
# Options for POST method.
5353
$curl->setopt(CURLOPT_UPLOAD, 1);

mingw32/include/openssl/aes.h

Lines changed: 46 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -8,104 +8,102 @@
88
*/
99

1010
#ifndef OPENSSL_AES_H
11-
# define OPENSSL_AES_H
12-
# pragma once
11+
#define OPENSSL_AES_H
12+
#pragma once
1313

14-
# include <openssl/macros.h>
15-
# ifndef OPENSSL_NO_DEPRECATED_3_0
16-
# define HEADER_AES_H
17-
# endif
14+
#include <openssl/macros.h>
15+
#ifndef OPENSSL_NO_DEPRECATED_3_0
16+
#define HEADER_AES_H
17+
#endif
1818

19-
# include <openssl/opensslconf.h>
19+
#include <openssl/opensslconf.h>
2020

21-
# include <stddef.h>
22-
# ifdef __cplusplus
21+
#include <stddef.h>
22+
#ifdef __cplusplus
2323
extern "C" {
24-
# endif
25-
26-
# define AES_BLOCK_SIZE 16
24+
#endif
2725

28-
# ifndef OPENSSL_NO_DEPRECATED_3_0
26+
#define AES_BLOCK_SIZE 16
2927

30-
# define AES_ENCRYPT 1
31-
# define AES_DECRYPT 0
28+
#ifndef OPENSSL_NO_DEPRECATED_3_0
3229

33-
# define AES_MAXNR 14
30+
#define AES_ENCRYPT 1
31+
#define AES_DECRYPT 0
3432

33+
#define AES_MAXNR 14
3534

3635
/* This should be a hidden type, but EVP requires that the size be known */
3736
struct aes_key_st {
38-
# ifdef AES_LONG
37+
#ifdef AES_LONG
3938
unsigned long rd_key[4 * (AES_MAXNR + 1)];
40-
# else
39+
#else
4140
unsigned int rd_key[4 * (AES_MAXNR + 1)];
42-
# endif
41+
#endif
4342
int rounds;
4443
};
4544
typedef struct aes_key_st AES_KEY;
4645

47-
# endif
48-
# ifndef OPENSSL_NO_DEPRECATED_3_0
46+
#endif
47+
#ifndef OPENSSL_NO_DEPRECATED_3_0
4948
OSSL_DEPRECATEDIN_3_0 const char *AES_options(void);
5049
OSSL_DEPRECATEDIN_3_0
5150
int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
52-
AES_KEY *key);
51+
AES_KEY *key);
5352
OSSL_DEPRECATEDIN_3_0
5453
int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
55-
AES_KEY *key);
54+
AES_KEY *key);
5655
OSSL_DEPRECATEDIN_3_0
5756
void AES_encrypt(const unsigned char *in, unsigned char *out,
58-
const AES_KEY *key);
57+
const AES_KEY *key);
5958
OSSL_DEPRECATEDIN_3_0
6059
void AES_decrypt(const unsigned char *in, unsigned char *out,
61-
const AES_KEY *key);
60+
const AES_KEY *key);
6261
OSSL_DEPRECATEDIN_3_0
6362
void AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
64-
const AES_KEY *key, const int enc);
63+
const AES_KEY *key, const int enc);
6564
OSSL_DEPRECATEDIN_3_0
6665
void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
67-
size_t length, const AES_KEY *key,
68-
unsigned char *ivec, const int enc);
66+
size_t length, const AES_KEY *key,
67+
unsigned char *ivec, const int enc);
6968
OSSL_DEPRECATEDIN_3_0
7069
void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out,
71-
size_t length, const AES_KEY *key,
72-
unsigned char *ivec, int *num, const int enc);
70+
size_t length, const AES_KEY *key,
71+
unsigned char *ivec, int *num, const int enc);
7372
OSSL_DEPRECATEDIN_3_0
7473
void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out,
75-
size_t length, const AES_KEY *key,
76-
unsigned char *ivec, int *num, const int enc);
74+
size_t length, const AES_KEY *key,
75+
unsigned char *ivec, int *num, const int enc);
7776
OSSL_DEPRECATEDIN_3_0
7877
void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out,
79-
size_t length, const AES_KEY *key,
80-
unsigned char *ivec, int *num, const int enc);
78+
size_t length, const AES_KEY *key,
79+
unsigned char *ivec, int *num, const int enc);
8180
OSSL_DEPRECATEDIN_3_0
8281
void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out,
83-
size_t length, const AES_KEY *key,
84-
unsigned char *ivec, int *num);
82+
size_t length, const AES_KEY *key,
83+
unsigned char *ivec, int *num);
8584

8685
/* NB: the IV is _two_ blocks long */
8786
OSSL_DEPRECATEDIN_3_0
8887
void AES_ige_encrypt(const unsigned char *in, unsigned char *out,
89-
size_t length, const AES_KEY *key,
90-
unsigned char *ivec, const int enc);
88+
size_t length, const AES_KEY *key,
89+
unsigned char *ivec, const int enc);
9190
/* NB: the IV is _four_ blocks long */
9291
OSSL_DEPRECATEDIN_3_0
9392
void AES_bi_ige_encrypt(const unsigned char *in, unsigned char *out,
94-
size_t length, const AES_KEY *key, const AES_KEY *key2,
95-
const unsigned char *ivec, const int enc);
93+
size_t length, const AES_KEY *key, const AES_KEY *key2,
94+
const unsigned char *ivec, const int enc);
9695
OSSL_DEPRECATEDIN_3_0
9796
int AES_wrap_key(AES_KEY *key, const unsigned char *iv,
98-
unsigned char *out, const unsigned char *in,
99-
unsigned int inlen);
97+
unsigned char *out, const unsigned char *in,
98+
unsigned int inlen);
10099
OSSL_DEPRECATEDIN_3_0
101100
int AES_unwrap_key(AES_KEY *key, const unsigned char *iv,
102-
unsigned char *out, const unsigned char *in,
103-
unsigned int inlen);
104-
# endif
105-
101+
unsigned char *out, const unsigned char *in,
102+
unsigned int inlen);
103+
#endif
106104

107-
# ifdef __cplusplus
105+
#ifdef __cplusplus
108106
}
109-
# endif
107+
#endif
110108

111109
#endif

mingw32/include/openssl/applink.c

Lines changed: 45 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,31 @@
77
* https://www.openssl.org/source/license.html
88
*/
99

10-
#define APPLINK_STDIN 1
11-
#define APPLINK_STDOUT 2
12-
#define APPLINK_STDERR 3
10+
#define APPLINK_STDIN 1
11+
#define APPLINK_STDOUT 2
12+
#define APPLINK_STDERR 3
1313
#define APPLINK_FPRINTF 4
14-
#define APPLINK_FGETS 5
15-
#define APPLINK_FREAD 6
16-
#define APPLINK_FWRITE 7
14+
#define APPLINK_FGETS 5
15+
#define APPLINK_FREAD 6
16+
#define APPLINK_FWRITE 7
1717
#define APPLINK_FSETMOD 8
18-
#define APPLINK_FEOF 9
19-
#define APPLINK_FCLOSE 10 /* should not be used */
20-
21-
#define APPLINK_FOPEN 11 /* solely for completeness */
22-
#define APPLINK_FSEEK 12
23-
#define APPLINK_FTELL 13
24-
#define APPLINK_FFLUSH 14
25-
#define APPLINK_FERROR 15
18+
#define APPLINK_FEOF 9
19+
#define APPLINK_FCLOSE 10 /* should not be used */
20+
21+
#define APPLINK_FOPEN 11 /* solely for completeness */
22+
#define APPLINK_FSEEK 12
23+
#define APPLINK_FTELL 13
24+
#define APPLINK_FFLUSH 14
25+
#define APPLINK_FERROR 15
2626
#define APPLINK_CLEARERR 16
27-
#define APPLINK_FILENO 17 /* to be used with below */
27+
#define APPLINK_FILENO 17 /* to be used with below */
2828

29-
#define APPLINK_OPEN 18 /* formally can't be used, as flags can vary */
30-
#define APPLINK_READ 19
31-
#define APPLINK_WRITE 20
32-
#define APPLINK_LSEEK 21
33-
#define APPLINK_CLOSE 22
34-
#define APPLINK_MAX 22 /* always same as last macro */
29+
#define APPLINK_OPEN 18 /* formally can't be used, as flags can vary */
30+
#define APPLINK_READ 19
31+
#define APPLINK_WRITE 20
32+
#define APPLINK_LSEEK 21
33+
#define APPLINK_CLOSE 22
34+
#define APPLINK_MAX 22 /* always same as last macro */
3535

3636
#ifndef APPMACROS_ONLY
3737

@@ -41,17 +41,17 @@
4141
* following included header files. You will need to put these
4242
* include lines somewhere in the file that is including applink.c.
4343
*/
44-
# ifndef APPLINK_NO_INCLUDES
45-
# include <stdio.h>
46-
# include <io.h>
47-
# include <fcntl.h>
48-
# endif
49-
50-
# ifdef __BORLANDC__
51-
/* _lseek in <io.h> is a function-like macro so we can't take its address */
52-
# undef _lseek
53-
# define _lseek lseek
54-
# endif
44+
#ifndef APPLINK_NO_INCLUDES
45+
#include <stdio.h>
46+
#include <io.h>
47+
#include <fcntl.h>
48+
#endif
49+
50+
#ifdef __BORLANDC__
51+
/* _lseek in <io.h> is a function-like macro so we can't take its address */
52+
#undef _lseek
53+
#define _lseek lseek
54+
#endif
5555

5656
static void *app_stdin(void)
5757
{
@@ -97,23 +97,21 @@ static int app_fsetmod(FILE *fp, char mod)
9797
extern "C" {
9898
#endif
9999

100-
__declspec(dllexport)
101-
void **
102-
# if defined(__BORLANDC__)
103-
/*
104-
* __stdcall appears to be the only way to get the name
105-
* decoration right with Borland C. Otherwise it works
106-
* purely incidentally, as we pass no parameters.
107-
*/
108-
__stdcall
109-
# else
110-
__cdecl
111-
# endif
112-
OPENSSL_Applink(void)
100+
__declspec(dllexport) void **
101+
#if defined(__BORLANDC__)
102+
/*
103+
* __stdcall appears to be the only way to get the name
104+
* decoration right with Borland C. Otherwise it works
105+
* purely incidentally, as we pass no parameters.
106+
*/
107+
__stdcall
108+
#else
109+
__cdecl
110+
#endif
111+
OPENSSL_Applink(void)
113112
{
114113
static int once = 1;
115-
static void *OPENSSL_ApplinkTable[APPLINK_MAX + 1] =
116-
{ (void *)APPLINK_MAX };
114+
static void *OPENSSL_ApplinkTable[APPLINK_MAX + 1] = { (void *)APPLINK_MAX };
117115

118116
if (once) {
119117
OPENSSL_ApplinkTable[APPLINK_STDIN] = app_stdin;

0 commit comments

Comments
 (0)