Results 1 to 7 of 7

Thread: md5 checksum utility

  1. #1
    Senior Member
    Join Date
    Jul 2003
    Posts
    106

    md5 checksum utility

    i've used a very simple md5 checksum utility in the past ... it doesn't have any advanced features only calculates the checksum.... it's windows based... i tried google it but i cannot find it... anyone know what's the name
    i\'m the guy who bitched out a girl about writting poems in General Chat... Now everyone thinks I hate women and that I\'m gay ... live and learn ... hehe

  2. #2
    Senior Member
    Join Date
    Jun 2003
    Posts
    772
    The above sentences are produced by the propaganda and indoctrination of people manipulating my mind since 1987, hence, I cannot be held responsible for this post\'s content - me

    www.elhalf.com

  3. #3
    Senior Member
    Join Date
    Mar 2002
    Posts
    442
    FSUM is a command line client but it supports multiple algorithms and has always been the fastest and most compatible checksum utility I have used.

  4. #4
    Senior Member
    Join Date
    Jul 2003
    Posts
    106
    thanx this will suffice ... but the one i'm looking for i GUI based ... any ideas
    i\'m the guy who bitched out a girl about writting poems in General Chat... Now everyone thinks I hate women and that I\'m gay ... live and learn ... hehe

  5. #5
    Senior Member
    Join Date
    Jun 2003
    Posts
    772
    The above sentences are produced by the propaganda and indoctrination of people manipulating my mind since 1987, hence, I cannot be held responsible for this post\'s content - me

    www.elhalf.com

  6. #6
    Senior Member tampabay420's Avatar
    Join Date
    Aug 2002
    Posts
    953
    in Perl;
    Code:
     use Digest::MD5;
    
     $ctx = Digest::MD5->new;
    
     #$ctx->add($data);
     
    	open (FILE, $ARGV[0]) || die ("\nCan't Access File!\n");
    	
     $ctx->addfile(*FILE);
    
    	close (FILE);
    
    	print "\nFile Name:\t".$ARGV[0];
    
    $digest = $ctx->digest;
    	
    	print "\nRaw Digest:\t".$digest;
     
    $digest = $ctx->hexdigest;
    
    	print "\nHex Digest:\t".$digest;
    
    $digest = $ctx->b64digest;  
    	
    	print "\nBase64 Digest:\t".$digest;
    I'm trying to compile it for you, will repost binary
    yeah, I\'m gonna need that by friday...

  7. #7
    Senior Member tampabay420's Avatar
    Join Date
    Aug 2002
    Posts
    953
    here, i coded a GUI win32 Application that does MD5 Checksums...

    TMCU (Tampa's MD5 Checksum Utility)
    yeah, I\'m gonna need that by friday...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •