This was accidently posted under the "Coding Snack Guidelines" area and not the "Post New Requests Here", (can someone delete the post located at https://www.donation....php?topic=33063.new - thanks.)There are various implementations of oplop (
http://code.google.c...wiki/Implementations), but I am looking for a Windows based one, if possible done in AutoIT.
Some ideas that I would like to see, and I know this then makes the request outside of the canon for oplop:
select the length of the created password hash, with 8 being the least accepted length
Current canon states "Oplop also makes sure there is at least one digit and one letter in every unique account password in case a web site requires that sort of thing."
I would like to have a check box that allow the inclusion of special character from a predefined listing. It could as simple as allow a ampersand (or char of the user's chosing), Yes / No?
Technical Details (
http://code.google.c...plop/wiki/HowItWorks)
Oplop is a password hashing algorithm. The steps it takes to generate an account password is:
1.Concatenate the master password with the nickname (in that order!).
2.Generate the MD5 hash of the concatenated string.
3.Convert the MD5 hash to URL-safe Base64.
4.See if there are any digits in the first 8 characters. If no digits are found ...
1.Search for the first uninterrupted substring of digits.
2.If a substring of digits is found, prepend them to the Base64 string.
3.If no substring is found, prepend a 1.
5.Use the first 8 characters as the account password.