Discussion:
[libav-devel] [PATCH] use bcrypt instead of the old wincrypt API
Steve Lhomme
2018-03-30 07:36:05 UTC
Permalink
When targeting Windows Vista and above
The wincrypt API is deprecated and not allowed for Windows Store apps.
---
configure | 4 +++-
libavutil/random_seed.c | 16 ++++++++++++++--
2 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/configure b/configure
index 7612a6052c..60bca6ff25 100755
--- a/configure
+++ b/configure
@@ -1708,6 +1708,7 @@ SYSTEM_LIBRARIES="
vaapi_drm
vaapi_x11
vdpau_x11
+ bcrypt
wincrypt
"

@@ -2611,7 +2612,7 @@ avdevice_extralibs="libm_extralibs"
avformat_extralibs="libm_extralibs"
avfilter_extralibs="pthreads_extralibs libm_extralibs"
avresample_extralibs="libm_extralibs"
-avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
+avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs bcrypt_extralibs wincrypt_extralibs"
swscale_extralibs="libm_extralibs"

# programs
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt

check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss

diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
index 089d883916..f9686dfae2 100644
--- a/libavutil/random_seed.c
+++ b/libavutil/random_seed.c
@@ -23,7 +23,9 @@
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+#include <bcrypt.h>
+#elif HAVE_WINCRYPT
#include <windows.h>
#include <wincrypt.h>
#endif
@@ -96,7 +98,17 @@ uint32_t av_get_random_seed(void)
{
uint32_t seed;

-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+ BCRYPT_ALG_HANDLE algo_handle;
+ NTSTATUS ret = BCryptOpenAlgorithmProvider(&algo_handle, BCRYPT_RNG_ALGORITHM,
+ MS_PRIMITIVE_PROVIDER, 0);
+ if (BCRYPT_SUCCESS(ret)) {
+ NTSTATUS ret = BCryptGenRandom(algo_handle, &seed, sizeof(seed), 0);
+ BCryptCloseAlgorithmProvider(algo_handle, 0);
+ if (BCRYPT_SUCCESS(ret))
+ return seed;
+ }
+#elif HAVE_WINCRYPT
HCRYPTPROV provider;
if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL,
CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
--
2.16.2
Diego Biurrun
2018-03-30 08:46:35 UTC
Permalink
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -1708,6 +1708,7 @@ SYSTEM_LIBRARIES="
vaapi_x11
vdpau_x11
+ bcrypt
wincrypt
"
This should be ordered.
Post by Steve Lhomme
@@ -2611,7 +2612,7 @@ avdevice_extralibs="libm_extralibs"
avfilter_extralibs="pthreads_extralibs libm_extralibs"
avresample_extralibs="libm_extralibs"
-avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
+avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs bcrypt_extralibs wincrypt_extralibs"
same
Post by Steve Lhomme
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Do you really need to check the Vista condition? What about using bcrypt
unconditionally if available? The variable name with an uppercase letter
and a '+' is slightly odd. I'm not sure if it can cause problems but I
cannot rule it out offhand either.

Diego
Steve Lhomme
2018-03-30 10:38:05 UTC
Permalink
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -1708,6 +1708,7 @@ SYSTEM_LIBRARIES="
vaapi_x11
vdpau_x11
+ bcrypt
wincrypt
"
This should be ordered.
Post by Steve Lhomme
@@ -2611,7 +2612,7 @@ avdevice_extralibs="libm_extralibs"
avfilter_extralibs="pthreads_extralibs libm_extralibs"
avresample_extralibs="libm_extralibs"
-avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
+avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs bcrypt_extralibs wincrypt_extralibs"
same
Post by Steve Lhomme
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Do you really need to check the Vista condition? What about using bcrypt
Yes, you need to use it only on builds that won't run on XP. Otherwise
it will fail to load the bcrypt.dll and the whole libavutil DLL (or
whatever its form) will fail to load. It would be possible to do it
dynamically but IMO it's overkill. It's not really a critical component.
But with time if XP support is dropped this check can go and wincrypt
dropped entirely.
Post by Diego Biurrun
unconditionally if available? The variable name with an uppercase letter
and a '+' is slightly odd. I'm not sure if it can cause problems but I
cannot rule it out offhand either.
It seems the same is only used in config.log. And the + didn't cause any
problem for me.
Post by Diego Biurrun
Diego
_______________________________________________
libav-devel mailing list
https://lists.libav.org/mailman/listinfo/libav-devel
Diego Biurrun
2018-03-30 13:38:49 UTC
Permalink
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Do you really need to check the Vista condition? What about using bcrypt
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP. Otherwise it
will fail to load the bcrypt.dll and the whole libavutil DLL (or whatever
its form) will fail to load. It would be possible to do it dynamically but
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check would seem
unnecessary. You could just check for bcrypt and bcrypt being available
would imply Vista. I think I'm missing something.
But with time if XP support is dropped this check can go and wincrypt
dropped entirely.
Is it maybe time to consider dropping XP support?
Post by Diego Biurrun
The variable name with an uppercase letter
and a '+' is slightly odd. I'm not sure if it can cause problems but I
cannot rule it out offhand either.
It seems the same is only used in config.log. And the + didn't cause any
problem for me.
I remain sceptical; "it worked for me" is usually not a good argument when
considering edge cases ;)

Diego
James Almer
2018-03-30 13:43:27 UTC
Permalink
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
If you don't need to set any variable then just use test_cpp_condition()
Post by Diego Biurrun
Post by Diego Biurrun
Do you really need to check the Vista condition? What about using bcrypt
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP. Otherwise it
will fail to load the bcrypt.dll and the whole libavutil DLL (or whatever
its form) will fail to load. It would be possible to do it dynamically but
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check would seem
unnecessary. You could just check for bcrypt and bcrypt being available
would imply Vista. I think I'm missing something.
check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt

Seems to succeed even if targeting XP, at least on mingw-w64.
Post by Diego Biurrun
But with time if XP support is dropped this check can go and wincrypt
dropped entirely.
Is it maybe time to consider dropping XP support?
Post by Diego Biurrun
The variable name with an uppercase letter
and a '+' is slightly odd. I'm not sure if it can cause problems but I
cannot rule it out offhand either.
It seems the same is only used in config.log. And the + didn't cause any
problem for me.
I remain sceptical; "it worked for me" is usually not a good argument when
considering edge cases ;)
Diego
_______________________________________________
libav-devel mailing list
https://lists.libav.org/mailman/listinfo/libav-devel
Diego Biurrun
2018-03-30 13:54:02 UTC
Permalink
Post by James Almer
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
If you don't need to set any variable then just use test_cpp_condition()
Yes, good point.
Post by James Almer
Post by Diego Biurrun
Post by Diego Biurrun
Do you really need to check the Vista condition? What about using bcrypt
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP. Otherwise it
will fail to load the bcrypt.dll and the whole libavutil DLL (or whatever
its form) will fail to load. It would be possible to do it dynamically but
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check would seem
unnecessary. You could just check for bcrypt and bcrypt being available
would imply Vista. I think I'm missing something.
check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Seems to succeed even if targeting XP, at least on mingw-w64.
Isn't that wrong then?

Diego
Martin Storsjö
2018-03-30 13:57:30 UTC
Permalink
Post by Diego Biurrun
Post by James Almer
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
If you don't need to set any variable then just use test_cpp_condition()
Yes, good point.
Post by James Almer
Post by Diego Biurrun
Post by Diego Biurrun
Do you really need to check the Vista condition? What about using bcrypt
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP. Otherwise it
will fail to load the bcrypt.dll and the whole libavutil DLL (or whatever
its form) will fail to load. It would be possible to do it dynamically but
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check would seem
unnecessary. You could just check for bcrypt and bcrypt being available
would imply Vista. I think I'm missing something.
check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Seems to succeed even if targeting XP, at least on mingw-w64.
Isn't that wrong then?
I guess it just means that mingw-w64 doesn't have _WIN32_WINNT ifdefs
guarding the availability of this function in the headers. (The official
windows SDK might, although that SDK also have dropped XP support long ago
iirc.)

// Martin
James Almer
2018-03-30 14:14:56 UTC
Permalink
Post by Martin Storsjö
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32    "windows.h"           
CoTaskMemFree        -lole32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib shell32  "windows.h shellapi.h" CommandLineToArgvW  
-lshell32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom      
-ladvapi32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib psapi    "windows.h psapi.h"    GetProcessMemoryInfo
-lpsapi
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600"
&& check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
If you don't need to set any variable then just use test_cpp_condition()
Yes, good point.
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Do you really need to check the Vista condition? What about using
bcrypt
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP.
Otherwise it
Post by Diego Biurrun
Post by Steve Lhomme
will fail to load the bcrypt.dll and the whole libavutil DLL (or
whatever
Post by Diego Biurrun
Post by Steve Lhomme
its form) will fail to load. It would be possible to do it
dynamically but
Post by Diego Biurrun
Post by Steve Lhomme
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check
would seem
Post by Diego Biurrun
unnecessary. You could just check for bcrypt and bcrypt being
available
Post by Diego Biurrun
would imply Vista. I think I'm missing something.
check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
Seems to succeed even if targeting XP, at least on mingw-w64.
Isn't that wrong then?
I guess it just means that mingw-w64 doesn't have _WIN32_WINNT ifdefs
guarding the availability of this function in the headers. (The official
windows SDK might, although that SDK also have dropped XP support long
ago iirc.)
bcrypt.h on mingw-w64 is completely wrapped in checks like

#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) || _WIN32_WINNT
Post by Martin Storsjö
= 0x0A00
The former is the reason it succeeds in XP, seeing the latter is
checking for Windows 10 or newer.
Martin Storsjö
2018-03-30 18:13:09 UTC
Permalink
Post by James Almer
Post by Martin Storsjö
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32    "windows.h"           
CoTaskMemFree        -lole32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib shell32  "windows.h shellapi.h" CommandLineToArgvW  
-lshell32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom      
-ladvapi32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib psapi    "windows.h psapi.h"    GetProcessMemoryInfo
-lpsapi
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600"
&& check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
If you don't need to set any variable then just use test_cpp_condition()
Yes, good point.
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Do you really need to check the Vista condition? What about using
bcrypt
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP.
Otherwise it
Post by Diego Biurrun
Post by Steve Lhomme
will fail to load the bcrypt.dll and the whole libavutil DLL (or
whatever
Post by Diego Biurrun
Post by Steve Lhomme
its form) will fail to load. It would be possible to do it
dynamically but
Post by Diego Biurrun
Post by Steve Lhomme
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check
would seem
Post by Diego Biurrun
unnecessary. You could just check for bcrypt and bcrypt being
available
Post by Diego Biurrun
would imply Vista. I think I'm missing something.
check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
Seems to succeed even if targeting XP, at least on mingw-w64.
Isn't that wrong then?
I guess it just means that mingw-w64 doesn't have _WIN32_WINNT ifdefs
guarding the availability of this function in the headers. (The official
windows SDK might, although that SDK also have dropped XP support long
ago iirc.)
bcrypt.h on mingw-w64 is completely wrapped in checks like
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) || _WIN32_WINNT
Post by Martin Storsjö
= 0x0A00
The former is the reason it succeeds in XP, seeing the latter is
checking for Windows 10 or newer.
Hmm, ok. I guess the correct form would be something like
"(WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) && _WIN32_WINNT >=
0x0600) || _WIN32_WINNT >= 0x0A00" then.

// Martin
James Almer
2018-03-30 19:00:59 UTC
Permalink
Post by Martin Storsjö
Post by James Almer
Post by Martin Storsjö
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32    "windows.h"           
CoTaskMemFree        -lole32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib shell32  "windows.h shellapi.h" CommandLineToArgvW  
-lshell32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom      
-ladvapi32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib psapi    "windows.h psapi.h"    GetProcessMemoryInfo
-lpsapi
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600"
&& check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
If you don't need to set any variable then just use
test_cpp_condition()
Yes, good point.
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Do you really need to check the Vista condition? What about using
bcrypt
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP.
Otherwise it
Post by Diego Biurrun
Post by Steve Lhomme
will fail to load the bcrypt.dll and the whole libavutil DLL (or
whatever
Post by Diego Biurrun
Post by Steve Lhomme
its form) will fail to load. It would be possible to do it
dynamically but
Post by Diego Biurrun
Post by Steve Lhomme
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check
would seem
Post by Diego Biurrun
unnecessary. You could just check for bcrypt and bcrypt being
available
Post by Diego Biurrun
would imply Vista. I think I'm missing something.
check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
Seems to succeed even if targeting XP, at least on mingw-w64.
Isn't that wrong then?
I guess it just means that mingw-w64 doesn't have _WIN32_WINNT ifdefs
guarding the availability of this function in the headers. (The official
windows SDK might, although that SDK also have dropped XP support long
ago iirc.)
bcrypt.h on mingw-w64 is completely wrapped in checks like
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) || _WIN32_WINNT
Post by Martin Storsjö
= 0x0A00
The former is the reason it succeeds in XP, seeing the latter is
checking for Windows 10 or newer.
Hmm, ok. I guess the correct form would be something like
"(WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) && _WIN32_WINNT >=
0x0600) || _WIN32_WINNT >= 0x0A00" then.
// Martin
The WINAPI_PARTITION_DESKTOP check is already done in configure to
enable or disable the uwp variable.

In any case, does this mean that on uwp neither BCryptGenRandom or
CryptGenRandom are available/allowed?
Martin Storsjö
2018-03-30 19:07:55 UTC
Permalink
Post by James Almer
Post by Martin Storsjö
Post by James Almer
Post by Martin Storsjö
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32    "windows.h"           
CoTaskMemFree        -lole32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib shell32  "windows.h shellapi.h" CommandLineToArgvW  
-lshell32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom      
-ladvapi32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib psapi    "windows.h psapi.h"    GetProcessMemoryInfo
-lpsapi
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600"
&& check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
If you don't need to set any variable then just use
test_cpp_condition()
Yes, good point.
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Do you really need to check the Vista condition? What about using
bcrypt
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP.
Otherwise it
Post by Diego Biurrun
Post by Steve Lhomme
will fail to load the bcrypt.dll and the whole libavutil DLL (or
whatever
Post by Diego Biurrun
Post by Steve Lhomme
its form) will fail to load. It would be possible to do it
dynamically but
Post by Diego Biurrun
Post by Steve Lhomme
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check
would seem
Post by Diego Biurrun
unnecessary. You could just check for bcrypt and bcrypt being
available
Post by Diego Biurrun
would imply Vista. I think I'm missing something.
check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
Seems to succeed even if targeting XP, at least on mingw-w64.
Isn't that wrong then?
I guess it just means that mingw-w64 doesn't have _WIN32_WINNT ifdefs
guarding the availability of this function in the headers. (The official
windows SDK might, although that SDK also have dropped XP support long
ago iirc.)
bcrypt.h on mingw-w64 is completely wrapped in checks like
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) || _WIN32_WINNT
Post by Martin Storsjö
= 0x0A00
The former is the reason it succeeds in XP, seeing the latter is
checking for Windows 10 or newer.
Hmm, ok. I guess the correct form would be something like
"(WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) && _WIN32_WINNT >=
0x0600) || _WIN32_WINNT >= 0x0A00" then.
// Martin
The WINAPI_PARTITION_DESKTOP check is already done in configure to
enable or disable the uwp variable.
Not sure I see how that relates... that part of the header guard makes it
visible on and makes the check succeed when targeting XP, even though it
really isn't available there according to Steve.
Post by James Almer
In any case, does this mean that on uwp neither BCryptGenRandom or
CryptGenRandom are available/allowed?
The way I read that, for UWP on Win10, the bcrypt.h stuff should be fine,
no? (Based on the mingw-w64 header guards, it might not be for win8/8.1
RT/store/UWP/whatever apps, although MSDN doesn't seem to say anything
about it.)

// Martin
Steve Lhomme
2018-04-03 09:43:24 UTC
Permalink
Post by Martin Storsjö
Post by James Almer
Post by Martin Storsjö
Post by James Almer
Post by Martin Storsjö
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32    "windows.h"
CoTaskMemFree        -lole32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib shell32  "windows.h shellapi.h" CommandLineToArgvW
-lshell32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom
-ladvapi32
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
   check_lib psapi    "windows.h psapi.h"   
GetProcessMemoryInfo
-lpsapi
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Post by Steve Lhomme
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600"
&& check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom  -lbcrypt
If you don't need to set any variable then just use
test_cpp_condition()
Yes, good point.
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
Do you really need to check the Vista condition? What about
using
bcrypt
Post by Diego Biurrun
Post by Steve Lhomme
Post by Diego Biurrun
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP.
Otherwise it
Post by Diego Biurrun
Post by Steve Lhomme
will fail to load the bcrypt.dll and the whole libavutil DLL (or
whatever
Post by Diego Biurrun
Post by Steve Lhomme
its form) will fail to load. It would be possible to do it
dynamically but
Post by Diego Biurrun
Post by Steve Lhomme
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check
would seem
Post by Diego Biurrun
unnecessary. You could just check for bcrypt and bcrypt being
available
Post by Diego Biurrun
would imply Vista. I think I'm missing something.
check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Seems to succeed even if targeting XP, at least on mingw-w64.
Isn't that wrong then?
I guess it just means that mingw-w64 doesn't have _WIN32_WINNT ifdefs
guarding the availability of this function in the headers. (The official
windows SDK might, although that SDK also have dropped XP support long
ago iirc.)
bcrypt.h on mingw-w64 is completely wrapped in checks like
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) || _WIN32_WINNT
Post by Martin Storsjö
= 0x0A00
The former is the reason it succeeds in XP, seeing the latter is
checking for Windows 10 or newer.
Hmm, ok. I guess the correct form would be something like
"(WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) && _WIN32_WINNT >=
0x0600) || _WIN32_WINNT >= 0x0A00" then.
// Martin
The WINAPI_PARTITION_DESKTOP check is already done in configure to
enable or disable the uwp variable.
Not sure I see how that relates... that part of the header guard makes
it visible on and makes the check succeed when targeting XP, even
though it really isn't available there according to Steve.
Post by James Almer
In any case, does this mean that on uwp neither BCryptGenRandom or
CryptGenRandom are available/allowed?
The way I read that, for UWP on Win10, the bcrypt.h stuff should be
fine, no? (Based on the mingw-w64 header guards, it might not be for
win8/8.1 RT/store/UWP/whatever apps, although MSDN doesn't seem to say
anything about it.)
It's available for 8.1 and even before for Winstore apps. That's why I
only added the Vista check. Everything above, on all possible targets,
is supported.
Post by Martin Storsjö
// Martin
_______________________________________________
libav-devel mailing list
https://lists.libav.org/mailman/listinfo/libav-devel
Martin Storsjö
2018-03-30 13:58:29 UTC
Permalink
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Do you really need to check the Vista condition? What about using bcrypt
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP. Otherwise it
will fail to load the bcrypt.dll and the whole libavutil DLL (or whatever
its form) will fail to load. It would be possible to do it dynamically but
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check would seem
unnecessary. You could just check for bcrypt and bcrypt being available
would imply Vista. I think I'm missing something.
But with time if XP support is dropped this check can go and wincrypt
dropped entirely.
Is it maybe time to consider dropping XP support?
I wouldn't mind.

See e.g. 9b121dfc32810250938021952aab4172a988cb56 in ffmpeg; dropping XP
support simplifies the w32pthreads wrapper and allows using better
synchronization primitives, that allow e.g. static initialization of
mutexes.

// Martin
Diego Biurrun
2018-03-30 14:41:21 UTC
Permalink
Post by Martin Storsjö
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Do you really need to check the Vista condition? What about using bcrypt
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP. Otherwise it
will fail to load the bcrypt.dll and the whole libavutil DLL (or whatever
its form) will fail to load. It would be possible to do it dynamically but
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check would seem
unnecessary. You could just check for bcrypt and bcrypt being available
would imply Vista. I think I'm missing something.
But with time if XP support is dropped this check can go and wincrypt
dropped entirely.
Is it maybe time to consider dropping XP support?
I wouldn't mind.
Let's go ahead then.
Post by Martin Storsjö
See e.g. 9b121dfc32810250938021952aab4172a988cb56 in ffmpeg; dropping XP
support simplifies the w32pthreads wrapper and allows using better
synchronization primitives, that allow e.g. static initialization of
mutexes.
Do we need to do more changes apart from importing that commit?

Diego
Martin Storsjö
2018-03-30 18:13:33 UTC
Permalink
Post by Diego Biurrun
Post by Martin Storsjö
Post by Diego Biurrun
Post by Diego Biurrun
Post by Steve Lhomme
--- a/configure
+++ b/configure
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition Vista+ windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Do you really need to check the Vista condition? What about using bcrypt
unconditionally if available?
Yes, you need to use it only on builds that won't run on XP. Otherwise it
will fail to load the bcrypt.dll and the whole libavutil DLL (or whatever
its form) will fail to load. It would be possible to do it dynamically but
IMO it's overkill. It's not really a critical component.
Is bcrypt available on XP? If no then the CPP condition check would seem
unnecessary. You could just check for bcrypt and bcrypt being available
would imply Vista. I think I'm missing something.
But with time if XP support is dropped this check can go and wincrypt
dropped entirely.
Is it maybe time to consider dropping XP support?
I wouldn't mind.
Let's go ahead then.
Post by Martin Storsjö
See e.g. 9b121dfc32810250938021952aab4172a988cb56 in ffmpeg; dropping XP
support simplifies the w32pthreads wrapper and allows using better
synchronization primitives, that allow e.g. static initialization of
mutexes.
Do we need to do more changes apart from importing that commit?
Don't think so, except for whatever configure differences there are.

// Martin
Steve Lhomme
2018-03-30 07:24:13 UTC
Permalink
When targeting Windows Vista and above
The wincrypt API is deprecated and not allowed for Windows Store apps.
---
configure | 4 +++-
libavutil/random_seed.c | 16 ++++++++++++++--
2 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/configure b/configure
index 7612a6052c..20064f44d8 100755
--- a/configure
+++ b/configure
@@ -1708,6 +1708,7 @@ SYSTEM_LIBRARIES="
vaapi_drm
vaapi_x11
vdpau_x11
+ bcrypt
wincrypt
"

@@ -2611,7 +2612,7 @@ avdevice_extralibs="libm_extralibs"
avformat_extralibs="libm_extralibs"
avfilter_extralibs="pthreads_extralibs libm_extralibs"
avresample_extralibs="libm_extralibs"
-avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
+avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs bcrypt_extralibs wincrypt_extralibs"
swscale_extralibs="libm_extralibs"

# programs
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+check_cpp_condition windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt

check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss

diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
index 089d883916..f9686dfae2 100644
--- a/libavutil/random_seed.c
+++ b/libavutil/random_seed.c
@@ -23,7 +23,9 @@
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+#include <bcrypt.h>
+#elif HAVE_WINCRYPT
#include <windows.h>
#include <wincrypt.h>
#endif
@@ -96,7 +98,17 @@ uint32_t av_get_random_seed(void)
{
uint32_t seed;

-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+ BCRYPT_ALG_HANDLE algo_handle;
+ NTSTATUS ret = BCryptOpenAlgorithmProvider(&algo_handle, BCRYPT_RNG_ALGORITHM,
+ MS_PRIMITIVE_PROVIDER, 0);
+ if (BCRYPT_SUCCESS(ret)) {
+ NTSTATUS ret = BCryptGenRandom(algo_handle, &seed, sizeof(seed), 0);
+ BCryptCloseAlgorithmProvider(algo_handle, 0);
+ if (BCRYPT_SUCCESS(ret))
+ return seed;
+ }
+#elif HAVE_WINCRYPT
HCRYPTPROV provider;
if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL,
CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
--
2.16.2
Steve Lhomme
2018-04-03 09:52:37 UTC
Permalink
When targeting Windows Vista and above
The wincrypt API is deprecated and not allowed for Windows Store apps.

Wincrypt can be removed after XP support is dropped.
---
configure | 4 +++-
libavutil/random_seed.c | 17 +++++++++++++++--
2 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/configure b/configure
index 77754d0f51..0ab975bb1c 100755
--- a/configure
+++ b/configure
@@ -1703,6 +1703,7 @@ SYSTEM_FUNCS="
"

SYSTEM_LIBRARIES="
+ bcrypt
sdl
vaapi_1
vaapi_drm
@@ -2611,7 +2612,7 @@ avdevice_extralibs="libm_extralibs"
avformat_extralibs="libm_extralibs"
avfilter_extralibs="pthreads_extralibs libm_extralibs"
avresample_extralibs="libm_extralibs"
-avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
+avutil_extralibs="bcrypt_extralibs clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
swscale_extralibs="libm_extralibs"

# programs
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+test_cpp_condition windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt

check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss

diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
index 089d883916..d11bff2ef6 100644
--- a/libavutil/random_seed.c
+++ b/libavutil/random_seed.c
@@ -23,7 +23,10 @@
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+#include <windows.h>
+#include <bcrypt.h>
+#elif HAVE_WINCRYPT
#include <windows.h>
#include <wincrypt.h>
#endif
@@ -96,7 +99,17 @@ uint32_t av_get_random_seed(void)
{
uint32_t seed;

-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+ BCRYPT_ALG_HANDLE algo_handle;
+ NTSTATUS ret = BCryptOpenAlgorithmProvider(&algo_handle, BCRYPT_RNG_ALGORITHM,
+ MS_PRIMITIVE_PROVIDER, 0);
+ if (BCRYPT_SUCCESS(ret)) {
+ NTSTATUS ret = BCryptGenRandom(algo_handle, (UCHAR*)&seed, sizeof(seed), 0);
+ BCryptCloseAlgorithmProvider(algo_handle, 0);
+ if (BCRYPT_SUCCESS(ret))
+ return seed;
+ }
+#elif HAVE_WINCRYPT
HCRYPTPROV provider;
if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL,
CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
--
2.16.2
Martin Storsjö
2018-04-14 21:14:57 UTC
Permalink
Post by Steve Lhomme
When targeting Windows Vista and above
The wincrypt API is deprecated and not allowed for Windows Store apps.
Wincrypt can be removed after XP support is dropped.
---
configure | 4 +++-
libavutil/random_seed.c | 17 +++++++++++++++--
2 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/configure b/configure
index 77754d0f51..0ab975bb1c 100755
--- a/configure
+++ b/configure
@@ -1703,6 +1703,7 @@ SYSTEM_FUNCS="
"
SYSTEM_LIBRARIES="
+ bcrypt
sdl
vaapi_1
vaapi_drm
@@ -2611,7 +2612,7 @@ avdevice_extralibs="libm_extralibs"
avformat_extralibs="libm_extralibs"
avfilter_extralibs="pthreads_extralibs libm_extralibs"
avresample_extralibs="libm_extralibs"
-avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
+avutil_extralibs="bcrypt_extralibs clock_gettime_extralibs cuda_extralibs cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
swscale_extralibs="libm_extralibs"
# programs
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h" CoTaskMemFree -lole32
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+test_cpp_condition windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt "windows.h bcrypt.h" BCryptGenRandom -lbcrypt
check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
index 089d883916..d11bff2ef6 100644
--- a/libavutil/random_seed.c
+++ b/libavutil/random_seed.c
@@ -23,7 +23,10 @@
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+#include <windows.h>
+#include <bcrypt.h>
+#elif HAVE_WINCRYPT
#include <windows.h>
#include <wincrypt.h>
#endif
@@ -96,7 +99,17 @@ uint32_t av_get_random_seed(void)
{
uint32_t seed;
-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+ BCRYPT_ALG_HANDLE algo_handle;
+ NTSTATUS ret = BCryptOpenAlgorithmProvider(&algo_handle, BCRYPT_RNG_ALGORITHM,
+ MS_PRIMITIVE_PROVIDER, 0);
+ if (BCRYPT_SUCCESS(ret)) {
+ NTSTATUS ret = BCryptGenRandom(algo_handle, (UCHAR*)&seed, sizeof(seed), 0);
+ BCryptCloseAlgorithmProvider(algo_handle, 0);
+ if (BCRYPT_SUCCESS(ret))
+ return seed;
+ }
+#elif HAVE_WINCRYPT
HCRYPTPROV provider;
if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL,
CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
--
2.16.2
This is ok with me and I can push it (perhaps with removing the check for
_WIN32_WINNT >= 0x600). I guess removing wincrypt can be left as a
separate later patch?

// Martin
Martin Storsjö
2018-04-15 20:12:42 UTC
Permalink
Post by Steve Lhomme
Post by Steve Lhomme
When targeting Windows Vista and above
The wincrypt API is deprecated and not allowed for Windows Store apps.
Wincrypt can be removed after XP support is dropped.
---
configure | 4 +++-
libavutil/random_seed.c | 17 +++++++++++++++--
2 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/configure b/configure
index 77754d0f51..0ab975bb1c 100755
--- a/configure
+++ b/configure
@@ -1703,6 +1703,7 @@ SYSTEM_FUNCS="
"
SYSTEM_LIBRARIES="
+ bcrypt
sdl
vaapi_1
vaapi_drm
@@ -2611,7 +2612,7 @@ avdevice_extralibs="libm_extralibs"
avformat_extralibs="libm_extralibs"
avfilter_extralibs="pthreads_extralibs libm_extralibs"
avresample_extralibs="libm_extralibs"
-avutil_extralibs="clock_gettime_extralibs cuda_extralibs cuvid_extralibs
d3d11va_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs
pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs
vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
Post by Steve Lhomme
+avutil_extralibs="bcrypt_extralibs clock_gettime_extralibs cuda_extralibs
cuvid_extralibs d3d11va_extralibs libm_extralibs libmfx_extralibs
nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs
vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs
wincrypt_extralibs"
Post by Steve Lhomme
swscale_extralibs="libm_extralibs"
# programs
@@ -4581,6 +4582,7 @@ check_lib ole32 "windows.h"
CoTaskMemFree -lole32
Post by Steve Lhomme
check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
+test_cpp_condition windows.h "_WIN32_WINNT >= 0x0600" && check_lib bcrypt
"windows.h bcrypt.h" BCryptGenRandom -lbcrypt
Post by Steve Lhomme
check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
index 089d883916..d11bff2ef6 100644
--- a/libavutil/random_seed.c
+++ b/libavutil/random_seed.c
@@ -23,7 +23,10 @@
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+#include <windows.h>
+#include <bcrypt.h>
+#elif HAVE_WINCRYPT
#include <windows.h>
#include <wincrypt.h>
#endif
@@ -96,7 +99,17 @@ uint32_t av_get_random_seed(void)
{
uint32_t seed;
-#if HAVE_WINCRYPT
+#if HAVE_BCRYPT
+ BCRYPT_ALG_HANDLE algo_handle;
+ NTSTATUS ret = BCryptOpenAlgorithmProvider(&algo_handle,
BCRYPT_RNG_ALGORITHM,
Post by Steve Lhomme
+ MS_PRIMITIVE_PROVIDER, 0);
+ if (BCRYPT_SUCCESS(ret)) {
+ NTSTATUS ret = BCryptGenRandom(algo_handle, (UCHAR*)&seed,
sizeof(seed), 0);
Post by Steve Lhomme
+ BCryptCloseAlgorithmProvider(algo_handle, 0);
+ if (BCRYPT_SUCCESS(ret))
+ return seed;
+ }
+#elif HAVE_WINCRYPT
HCRYPTPROV provider;
if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL,
CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
--
2.16.2
This is ok with me and I can push it (perhaps with removing the check for
_WIN32_WINNT >= 0x600). I guess removing wincrypt can be left as a
separate later patch?
As the form pushed in ffmpeg was with removing wincrypt at the same time,
I'd prefer using that form here as well. I'll send a version of the patch
in that form, and push a day later unless there's anything further to
change.

// Martin

Loading...