function _openid_nonce
Return a nonce value - formatted per OpenID spec.
NOTE: This nonce is not cryptographically secure and only suitable for use by the test framework.
2 calls to _openid_nonce()
- OpenIDFunctionalTestCase::testSignatureValidation in modules/
openid/ openid.test - Tests that openid.signed is verified.
- _openid_test_endpoint_authenticate in modules/
openid/ tests/ openid_test.module - OpenID endpoint; handle "authenticate" requests.
File
-
modules/
openid/ openid.inc, line 393
Code
function _openid_nonce() {
// YYYY-MM-DDThh:mm:ssZ, plus some optional extra unique characters.
return gmdate('Y-m-d\\TH:i:s\\Z') . chr(mt_rand(0, 25) + 65) . chr(mt_rand(0, 25) + 65) . chr(mt_rand(0, 25) + 65) . chr(mt_rand(0, 25) + 65);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.