File size: 370 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Management.Automation.Remoting;
namespace FuzzTests
{
public static class Target
{
public static void ExtractToken(ReadOnlySpan<byte> tokenResponse)
{
RemoteSessionHyperVSocketClient.ExtractToken(tokenResponse);
}
}
}
|