Files
MRCC/launcher/PCL-CE/PCL.Core/Utils/Encryption/IEncryptionProvider.cs
T

11 lines
290 B
C#
Raw Normal View History

using System;
namespace PCL.Core.Utils.Encryption;
public interface IEncryptionProvider
{
public byte[] Encrypt(ReadOnlySpan<byte> data, ReadOnlySpan<byte> key);
public byte[] Decrypt(ReadOnlySpan<byte> data, ReadOnlySpan<byte> key);
public static bool IsSupported { get; }
}