mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
22 lines
547 B
C#
22 lines
547 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;
|
|
}
|
|
} |