PalacePal/Pal.Client/Configuration/ConfigurationData.cs

45 lines
1.5 KiB
C#
Raw Normal View History

2023-02-15 12:27:41 +00:00
using Dalamud.Logging;
using System;
using System.Linq;
using System.Security.Cryptography;
using Microsoft.Extensions.Logging;
using Pal.Client.DependencyInjection.Logging;
2023-02-15 12:00:00 +00:00
namespace Pal.Client.Configuration
2023-02-15 01:38:04 +00:00
{
internal static class ConfigurationData
{
private static readonly ILogger _logger =
DependencyInjectionContext.LoggerProvider.CreateLogger(typeof(ConfigurationData));
2023-02-15 12:00:00 +00:00
[Obsolete("for V1 import")]
internal static readonly byte[] FixedV1Entropy = { 0x22, 0x4b, 0xe7, 0x21, 0x44, 0x83, 0x69, 0x55, 0x80, 0x38 };
2023-02-15 12:27:41 +00:00
private static bool? _supportsDpapi = null;
public static bool SupportsDpapi
{
get
{
if (_supportsDpapi == null)
{
try
{
byte[] input = RandomNumberGenerator.GetBytes(32);
byte[] entropy = RandomNumberGenerator.GetBytes(16);
byte[] temp = ProtectedData.Protect(input, entropy, DataProtectionScope.CurrentUser);
byte[] output = ProtectedData.Unprotect(temp, entropy, DataProtectionScope.CurrentUser);
_supportsDpapi = input.SequenceEqual(output);
}
catch (Exception)
{
_supportsDpapi = false;
}
_logger.LogTrace("DPAPI support: {Supported}", _supportsDpapi);
2023-02-15 12:27:41 +00:00
}
return _supportsDpapi.Value;
}
}
2023-02-15 01:38:04 +00:00
}
}