Skip to content

Commit 43dbb36

Browse files
authored
Merge pull request #164 from zorael/master
Load OpenSSL 3.x dlls in Windows
2 parents b09d5fd + 44fd0cb commit 43dbb36

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

source/requests/ssl_adapter.d

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,15 @@ shared static this() {
121121
"libssl32.dll"w,
122122
"libssl-1_1"w,
123123
"libssl-1_1-x64"w,
124+
"libssl-3"w,
125+
"libssl-3-x64"w,
124126
];
125127
immutable wstring[] libcryptoname = [
126128
"libeay32.dll"w,
127129
"libcrypto-1_1"w,
128130
"libcrypto-1_1-x64"w,
131+
"libcrypto-3"w,
132+
"libcrypto-3-x64"w,
129133
];
130134
} else {
131135
debug(requests) trace("error loading openssl: unsupported system - first access over https will fail");

0 commit comments

Comments
 (0)