sha1, crc32, and md5 how to read this data?

ArispQueess

New Member
How can I Decode the md5, crc32, and sha1, below is xml file and then is code I'm using to get data so far.\[code\]<files> <file name="AtTheInn-Germany-Morrow78Collection.mp3" source="original"> <format>VBR MP3</format> <title>At the Inn - Germany - Morrow 78 collection</title> <md5>056bbd63961450d9684ca54b35caed45</md5> <creator>Germany</creator> <album>Morrow 78 collection</album> <mtime>1256879264</mtime> <size>2165481</size> <crc32>22bab6a</crc32> <sha1>796fccc9b9dd9732612ee626c615050fd5d7483c</sha1> <length>179.59</length> </file>\[/code\]And this is code I'm using to get title and album name how can I make sense of sha1 and md5, any help to any direction will be helpful, Thanks\[code\]<?php $search = $_GET['sku']; $catalogfile = $_GET['file']; $directory = "feeds/"; $xmlfile = $directory . $catalogfile;$xml = simplexml_load_file($xmlfile);list($product) = $xml->xpath("//file[crc32 = '$search']");echo "<head>";echo "<title>$product->title</title>";\[/code\]
 
Back
Top