Now we have to implement custom Process.Start()

This commit is contained in:
Mino 2020-03-28 11:57:13 +09:00
parent e216227429
commit 3e6675adc0
3 changed files with 24 additions and 8 deletions

View file

@ -8,6 +8,13 @@ namespace Dalamud.Bootstrap.SqexArg
{
internal static class EncryptedArgumentExtensions
{
/// <summary>
///
/// </summary>
/// <param name="argument"></param>
/// <param name="key"></param>
/// <returns></returns>
/// <exception cref="SqexArgException">Thrown when the data property does not have a valid base64 string.</exception>
public static string Decrypt(this EncryptedArgument argument, uint key)
{
Span<byte> keyBytes = stackalloc byte[8];