You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

6 lines
394 B

* md5() on Unicode string will obviously be different from md5() done on
a native encoding version of that string. This can trip up people who
generate signatures externally (storing them in DB for instance) and then
pass md5() of Unicode strings to check against that. The solution is to
always run md5() on a string of the same type and encoding that the
external md5() was run on.