Files
2021-07-01 16:09:11 +02:00

23 lines
548 B
C#

namespace Windows.Security.Cryptography
{
public static class CryptographicBuffer
{
public static Windows.Storage.Streams.IBuffer CreateFromByteArray(byte[] value) => throw null;
}
}
namespace Windows.Storage.Streams
{
public interface IBuffer { }
}
namespace Windows.Security.Cryptography.Core
{
public sealed class CryptographicKey { }
public sealed class SymmetricKeyAlgorithmProvider
{
public CryptographicKey CreateSymmetricKey(Windows.Storage.Streams.IBuffer keyMaterial) => throw null;
}
}