Posted by Toodledo:
Can you please post your code?
I'm using Macroscheduler script.
LibFunc>Hashlib,StringMD5,r,%password%,buf
Midstr>r_2,1,r,hpw
LibFunc>Hashlib,StringMD5,r,%hpw%%token%%UID%,buf
Midstr>r_2,1,r,key
MessageModal>Hash: %key%
password is variable for my password.
If I set my password to "test" (in my code to test it), the Hashlib returns "098f6bcd4621d373cade4e832627b4f6" for variable hpw. This is correct per the Authintication Help page. Therefore, it appears my hasher is working correctly for my password.
I then hash the concatinate of the hashed 32 password | the returned token | my unique id. I tried entering this info directly (no variables) into my hasher, but it still comes up with something different than the "calculate key" test button.
I didn't want to devulge my unique ID or password in the forum. So I ommited the saving of this info into variables within my code.