MD5CryptoServiceProvider.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Security / Cryptography / MD5CryptoServiceProvider.cs / 1 / MD5CryptoServiceProvider.cs

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

// 
// MD5CryptoServiceProvider.cs 
//
 
namespace System.Security.Cryptography {
[System.Runtime.InteropServices.ComVisible(true)]
    public sealed class MD5CryptoServiceProvider : MD5 {
        private SafeHashHandle _safeHashHandle = null; 

        // 
        // public constructors 
        //
 
        public MD5CryptoServiceProvider() {
            if (Utils.FipsAlgorithmPolicy == 1)
                throw new InvalidOperationException(Environment.GetResourceString("Cryptography_NonCompliantFIPSAlgorithm"));
 
            SafeHashHandle safeHashHandle = SafeHashHandle.InvalidHandle;
            // _CreateHash will check for failures and throw the appropriate exception 
            Utils._CreateHash(Utils.StaticProvHandle, Constants.CALG_MD5, ref safeHashHandle); 
           _safeHashHandle = safeHashHandle;
        } 

        protected override void Dispose(bool disposing) {
            if (_safeHashHandle != null && !_safeHashHandle.IsClosed)
                _safeHashHandle.Dispose(); 
            base.Dispose(disposing);
        } 
 
        //
        // public methods 
        //

        public override void Initialize() {
            if (_safeHashHandle != null && !_safeHashHandle.IsClosed) 
                _safeHashHandle.Dispose();
            SafeHashHandle safeHashHandle = SafeHashHandle.InvalidHandle; 
            // _CreateHash will check for failures and throw the appropriate exception 
            Utils._CreateHash(Utils.StaticProvHandle, Constants.CALG_MD5, ref safeHashHandle);
           _safeHashHandle = safeHashHandle; 
        }

        protected override void HashCore(byte[] rgb, int ibStart, int cbSize) {
            Utils._HashData(_safeHashHandle, rgb, ibStart, cbSize); 
        }
 
        protected override byte[] HashFinal() { 
            return Utils._EndHash(_safeHashHandle);
        } 
    }
}


                        

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