OpenSSL is part of the OS
How did you determine that OpenSSL is part of Windows?
Open a Powershell prompt with "run as administrator" and paste in these commands.
(Get-ChildItem -Path c:\ -Filter libssl* -recurse -force -file -ea SilentlyContinue).fullname
(Get-ChildItem -Path c:\ -Filter openssl* -recurse -force -directory -ea SilentlyContinue).fullname
On my Win10 VM, I found the .dll in a VMWare tools folder and in what appears to be a OneDrive setup folder.
PS C:\> (Get-ChildItem -Path c:\ -Filter libssl* -recurse -force -file -ea SilentlyContinue).fullname
C:\Program Files\VMware\VMware Tools\VMware VGAuth\libssl-3-x64.dll
C:\Users\TestUser\AppData\Local\Microsoft\OneDrive\23.137.0702.0001\libssl-1_1-x64.dll
PS C:\> (Get-ChildItem -Path c:\ -Filter openssl* -recurse -force -directory -ea SilentlyContinue).fullname
PS C:\>
PS C:\>
On my Win11 laptop, I found multiple instances. It appears that OpenSSL comes bundled (a run time version?) with other software products.
The only reference to Windows\System32 has iclsclient in the name. An internet search says that that is related to the Intel Trusted Connect Service Client.
I would expect these dll's to get updated as part of an update to the individual software products, like VMWare Player, not via Windows itself.
PS C:\> (Get-ChildItem -Path c:\ -Filter libssl* -recurse -force -file -ea SilentlyContinue).fullname
C:\Program Files\Microsoft Office\root\Office16\ODBC Drivers\Salesforce\lib\LibCurl64.DllA\OpenSSL64.DllA\libssl-1_1-x64.dll
C:\Program Files\Microsoft Office\root\Office16\ODBC Drivers\Salesforce\lib\OpenSSL64.DllA\libssl-1_1-x64.dll
C:\Program Files\Microsoft OneDrive\23.153.0724.0003\libssl-1_1-x64.dll
C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\Git\mingw64\bin\libssl-1_1-x64.dll
C:\Program Files (x86)\Nmap\libssl-3.dll
C:\Program Files (x86)\VMware\VMware Player\libssl-1_1.dll
C:\Program Files (x86)\VMware\VMware Player\x64\libssl-1_1-x64.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_a93205b6238060e4\lib\libssl-1_1-x64.dll
PS C:\> (Get-ChildItem -Path c:\ -Filter openssl* -recurse -force -directory -ea SilentlyContinue).fullname
C:\Program Files\Microsoft Office\root\Office16\ODBC Drivers\Redshift\lib\OpenSSL64.DllA
C:\Program Files\Microsoft Office\root\Office16\ODBC Drivers\Salesforce\lib\OpenSSL64.DllA
C:\Program Files\Microsoft Office\root\Office16\ODBC Drivers\Salesforce\lib\LibCurl64.DllA\OpenSSL64.DllA
C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\Git\mingw64\share\licenses\openssl
C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\Git\usr\share\licenses\openssl
PS C:\>
What files/folders do you find?