aeroswat Posted May 10, 2010 Share Posted May 10, 2010 This will be used for password hashing mainly. Does anyone have a good website to learn how to go about such a task or is anyone willing to teach? Link to comment https://forums.phpfreaks.com/topic/201255-im-interested-in-creating-my-own-hashing-algorithm/ Share on other sites More sharing options...
andrewgauger Posted May 10, 2010 Share Posted May 10, 2010 http://www.kremlinencrypt.com/algorithms.htm Your best bet is to read a cryptography book and think about the algorithm you want to use. Generally, they perform multiple replicate-able calculations on a string to generate the most unique collisions. So are you looking for a simpler algorithm(ie less processor intensive), or are you looking to decrease the number of collisions? If you are looking for the former, then I'm sure you can find a pretty cheap and quick way to hash using arbitrary functions. If you are looking to conserve space while decreasing collisions, you are going to need to devote years of research in the subject. Cheers. Link to comment https://forums.phpfreaks.com/topic/201255-im-interested-in-creating-my-own-hashing-algorithm/#findComment-1056120 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.