File: PBKDF2\Pbkdf2Util.cs
Web Access
Project: src\src\DataProtection\Cryptography.KeyDerivation\src\Microsoft.AspNetCore.Cryptography.KeyDerivation.csproj (Microsoft.AspNetCore.Cryptography.KeyDerivation)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.AspNetCore.Cryptography.Cng;
 
namespace Microsoft.AspNetCore.Cryptography.KeyDerivation.PBKDF2;
 
/// <summary>
/// Internal base class used for abstracting away the PBKDF2 implementation since the implementation is OS-specific.
/// </summary>
internal static class Pbkdf2Util
{
    public static readonly IPbkdf2Provider Pbkdf2Provider = GetPbkdf2Provider();
 
    private static IPbkdf2Provider GetPbkdf2Provider()
    {
#if NETSTANDARD2_0 || NETFRAMEWORK
        // In priority order, our three implementations are Win8, Win7, and "other".
        if (OSVersionUtil.IsWindows8OrLater())
        {
            // fastest implementation
            return new Win8Pbkdf2Provider();
        }
        else if (OSVersionUtil.IsWindows())
        {
            // acceptable implementation
            return new Win7Pbkdf2Provider();
        }
        else
        {
            return new ManagedPbkdf2Provider();
        }
#elif NETCOREAPP
        // fastest implementation on .NET Core
        // Not supported on .NET Framework
        return new NetCorePbkdf2Provider();
#else
#error Update target frameworks
#endif
    }
}