On Sat, Apr 14, 2018 at 07:10:40PM -0300, James Almer wrote:
> On 4/3/2018 8:49 PM, Michael Niedermayer wrote:
> > On Tue, Apr 03, 2018 at 11:44:25AM +0200, Steve Lhomme wrote:
> >> Remove the wincrypt API calls since we don't support XP anymore and bcrypt
> >> is
> >> available since Vista, even
On 4/3/2018 8:49 PM, Michael Niedermayer wrote:
> On Tue, Apr 03, 2018 at 11:44:25AM +0200, Steve Lhomme wrote:
>> Remove the wincrypt API calls since we don't support XP anymore and bcrypt is
>> available since Vista, even on Windows Store builds.
>> ---
>> configure | 6 +++---
>>
On Tue, Apr 03, 2018 at 11:44:25AM +0200, Steve Lhomme wrote:
> Remove the wincrypt API calls since we don't support XP anymore and bcrypt is
> available since Vista, even on Windows Store builds.
> ---
> configure | 6 +++---
> libavutil/random_seed.c | 19 ++-
> 2
Le 01/04/2018 à 03:37, Michael Niedermayer a écrit :
On Fri, Mar 30, 2018 at 02:44:52PM +0200, Steve Lhomme wrote:
Remove the wincrypt API calls since we don't support XP anymore and bcrypt is
available since Vista, even on Windows Store builds.
---
configure | 6 +++---
libavu
Le 31/03/2018 à 16:46, Derek Buitenhuis a écrit :
On 3/30/2018 1:44 PM, Steve Lhomme wrote:
+if (BCRYPT_SUCCESS(ret)) {
+NTSTATUS ret = BCryptGenRandom(algo_handle, &seed, sizeof(seed), 0);
+BCryptCloseAlgorithmProvider(algo_handle, 0);
+if (BCRYPT_SUCCESS(ret))
On Fri, Mar 30, 2018 at 02:44:52PM +0200, Steve Lhomme wrote:
> Remove the wincrypt API calls since we don't support XP anymore and bcrypt is
> available since Vista, even on Windows Store builds.
> ---
> configure | 6 +++---
> libavutil/random_seed.c | 20 ++--
> 2
On 3/30/2018 1:44 PM, Steve Lhomme wrote:
> +if (BCRYPT_SUCCESS(ret)) {
> +NTSTATUS ret = BCryptGenRandom(algo_handle, &seed, sizeof(seed), 0);
> +BCryptCloseAlgorithmProvider(algo_handle, 0);
> +if (BCRYPT_SUCCESS(ret))
> return seed;
> }
How does thi
On Fri, Mar 30, 2018 at 9:23 AM, Steve Lhomme wrote:
> 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