Provides cookie integrity using RSA signature.
Namespace: Microsoft.IdentityModel.Web
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As RsaSignatureCookieTransform

Syntax

Visual Basic
Public Class RsaSignatureCookieTransform
		Inherits CookieTransform
C#
public class RsaSignatureCookieTransform : CookieTransform
C++
public ref class RsaSignatureCookieTransform : public CookieTransform
J#
public class RsaSignatureCookieTransform extends CookieTransform
JScript
public class RsaSignatureCookieTransform extends CookieTransform

Remarks

RsaSignatureCookieTransform adds an RSA-SHA1 MAC to the cookie data. This provides integrity but not confidentiality

Cookies protected with this transform may be read by any machine that shares the same RSA private key (generally associated with an X509 certificate).


Inheritance Hierarchy

System.Object
   Microsoft.IdentityModel.Web.CookieTransform
    Microsoft.IdentityModel.Web.RsaSignatureCookieTransform
       Microsoft.IdentityModel.Web.RsaSha1SignatureCookieTransform

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also