Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1044083
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:46:11+00:00 2026-05-16T15:46:11+00:00

What is the best solution in C# for computing an on the fly md5

  • 0

What is the best solution in C# for computing an “on the fly” md5 like hash of a stream of unknown length? Specifically, I want to compute a hash from data received over the network. I know I am done receiving data when the sender terminates the connection, so I don’t know the length in advance.

[EDIT] – Right now I am using md5 and am doing a second pass over the data after it’s been saved and written to disk. I’d rather hash it in place as it comes in from the network.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T15:46:12+00:00Added an answer on May 16, 2026 at 3:46 pm

    MD5, like other hash functions, does not require two passes.

    To start:

    HashAlgorithm hasher = ..;
    hasher.Initialize();
    

    As each block of data arrives:

    byte[] buffer = ..;
    int bytesReceived = ..;
    hasher.TransformBlock(buffer, 0, bytesReceived, null, 0);
    

    To finish and retrieve the hash:

    hasher.TransformFinalBlock(new byte[0], 0, 0);
    byte[] hash = hasher.Hash;
    

    This pattern works for any type derived from HashAlgorithm, including MD5CryptoServiceProvider and SHA1Managed.

    HashAlgorithm also defines a method ComputeHash which takes a Stream object; however, this method will block the thread until the stream is consumed. Using the TransformBlock approach allows an “asynchronous hash” that is computed as data arrives without using up a thread.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the best solution for inserting boolean values on database if you want
What is the best solution if I want to make a OnTouch event repeat
What is the best solution for many-to-many joins in Entity Framework. It looks like
The best solution I could find (anywhere) to get results from an SQL Query
best solution for use access in project for database with security i need to
what is the best solution to import large amounts of records into an MySQL
What's the best solution for authoring HTML5 in Emacs? Is there a mode that
what is the best solution in terms of performance and readability/good coding style to
What is the best solution to programmatically take a snapshot of a webpage? The
I'm looking for the generally accepted/best solution to this problem. Problem I have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.