-
Notifications
You must be signed in to change notification settings - Fork 89
csrfp_token pseudo random code for validation
minhaz edited this page Jul 25, 2014
·
2 revisions
This token is generated by a pseudo random string generator. The library uses SHA512
function in php if available to calculate the message digest of a random number. Then a token of a specific length is extracted from it. If however this function is not available, our own algorithm is used to calculate a Pseudo Random String.
PS: wiki still under development. Please create a Github issue for any correction.