Click here to Skip to main content
Licence CPOL
First Posted 17 May 2005
Views 34,319
Downloads 81
Bookmarked 16 times

MD5 Hash Calculator Pocket PC 2003/Windows CE 4.x

By | 17 May 2005 | Article
A small tool for calculating a MD5 hash.

Introduction

Background: I experienced some problems with my SD memory card in my HP IPAQ 1940. My GPS program had a lot of bugs I thought. Because it couldn't handle large maps. After some testing, I figured out that 64 MB was the magic limit. The tool I used to test was MD5 Hashing.

My simple method:

  • Create a large file (100 MB) on the SD card.
  • Calculate MD5 on the PC (SD card in card reader).
  • Insert SD card into IPAQ.
  • Calculate MD5 on the IPAQ.
  • Check if same. If not decrease size by half, if the hash is the same increase the file by 50%.

This gave the result that it was something goofy around 64 MB files.

After that I checked the obvious (thanks Rob). If there are any updates on the HP website for my IPAQ. And there was. So if you are having any problems with large (>64 MB) files on your IPAQ 1940 (or other models), check for updates at the HP website. The update for 1940 can be downloaded here.

Anyway, problem found and solved. I thought you might find it useful to have a MD5 Hasher for Pocket PC, so here it is. Parts of the code is (c) RSA Data Security, Inc.

Code snippet:

  MD5_CTX m_md5;
  CString tempHash = "";

    if (md5file(m_strFile.GetBuffer(MAX_PATH), 0, &m_md5))
    {
        for (int i = 0; i < 16; i++)
        {
            char tmp[3];
            _itoa(m_md5.digest[i], tmp, 16);
            if (strlen(tmp) == 1)
            {
                tmp[1] = tmp[0];
                tmp[0] = '0';
                tmp[2] = '\0';
            }
            tempHash += tmp;
        }
    }

The result is delivered in human readable format in tempHash.

Drop me an e-mail with comments or questions. To see what I should do instead of debugging SD-cards, have a look at www.freefloat.com.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

mwahlberg

Web Developer

Sweden Sweden

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralFile Encryption PinmemberHails4:11 24 Jul '08  
GeneralIf part of it is copyright.... PinmemberChristian Graus16:45 17 May '05  
GeneralRe: If part of it is copyright.... Pinmembermwahlberg2:48 18 May '05  
GeneralMD5 is not safe now. Pinmemberokam15:59 17 May '05  
GeneralRe: MD5 is not safe now. Pinmembermwahlberg2:46 18 May '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120528.1 | Last Updated 17 May 2005
Article Copyright 2005 by mwahlberg
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid