1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
6 using System.Collections.Generic;
10 namespace Microsoft.SqlServer.TDS.EndPoint.FederatedAuthentication
13 /// Interface for federated authentication ticket
15 public interface IFederatedAuthenticationTicket
18 /// Computes and returns the signature of the provided buffer using the internal session Key associated with the auth
21 byte[] GetSignature(byte[] bufferToSign);