Same name and namespace in other branches
  1. 6.x modules/openid/openid.inc \_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
OpenID utility functions.

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);
}