Sonarr/src/Microsoft.AspNet.SignalR.Core/Infrastructure/IProtectedData.cs

11 lines
356 B
C#
Raw Normal View History

2013-11-22 05:26:57 +00:00
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
namespace Microsoft.AspNet.SignalR.Infrastructure
{
public interface IProtectedData
{
string Protect(string data, string purpose);
string Unprotect(string protectedValue, string purpose);
}
}