|
Posted by Gerard Samuel on 02/17/05 20:37
Richard Lynch wrote:
>Gerard Samuel wrote:
>
>
>>Im currently using md5() to hash strings to be used,
>>as an id for a cache system.
>>Im trying to determine if md5() would be the fastest,
>>*cheapest* solution.
>>The only native php functions that I know of are md5() and sha1().
>>Are there any other native php functions that hash
>>strings?
>>
>>
>
>You may (or may not) want to look at http://php.net/uniqid
>
>I don't think you actually pass in a string to hash so much as just get a
>unique number back.
>
>For *SOME* applications this may or may not be suitable, and it could be
>faster than those complex hashing algorithms. Or not, especially if you
>include the optional entropy argument...
>
>You'd have to benchmark and see to be sure, of course.
>
The problem with uniqid(), is that it changes with time.
What Im looking for is something where the generated hashes can
be reproduced.
For example, md5('foo') today, will be equal to md5('foo') tomorrow.
Thanks
[Back to original message]
|