InfoCardRSAPKCS1KeyExchangeFormatter.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Client / System / IdentityModel / Selectors / InfoCardRSAPKCS1KeyExchangeFormatter.cs / 1 / InfoCardRSAPKCS1KeyExchangeFormatter.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------

namespace System.IdentityModel.Selectors 
{
    using System; 
    using System.Security.Cryptography; 

    internal class InfoCardRSAPKCS1KeyExchangeFormatter : RSAPKCS1KeyExchangeFormatter 
    {
        RSA m_rsaKey;

        // 
        // public constructors
        // 
 
        public InfoCardRSAPKCS1KeyExchangeFormatter() : base() {}
 
        public InfoCardRSAPKCS1KeyExchangeFormatter(AsymmetricAlgorithm key) : base( key )
        {
            m_rsaKey = (RSA) key;
        } 

        // 
        // public methods 
        //
 
        public override void SetKey( AsymmetricAlgorithm key )
        {
            base.SetKey( key );
            m_rsaKey = (RSA) key; 
        }
 
        public override byte[] CreateKeyExchange(byte[] rgbData) { 

            if ( null != m_rsaKey && m_rsaKey is InfoCardRSACryptoProvider) { 
                return ((InfoCardRSACryptoProvider) m_rsaKey).Encrypt(rgbData, false);
            }
            else
            { 
                return base.CreateKeyExchange( rgbData );
            } 
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK