System.Security.Cryptography.SHA384Managed.Initialize C# (CSharp) Method

Initialize() public final method

public final Initialize ( ) : void
return void
        public override sealed void Initialize()
        {
            // Nothing to do here. We expect HashAlgorithm to invoke HashFinal() and Initialize() as a pair. This reflects the
            // reality that our native crypto providers (e.g. CNG) expose hash finalization and object reinitialization as an atomic operation.
            return;
        }