function _openid_dh_base64_to_long

3 calls to _openid_dh_base64_to_long()
OpenIDTest::testConversion in drupal/core/modules/openid/lib/Drupal/openid/Tests/OpenIDTest.php
Test _openid_dh_XXX_to_XXX() functions.
openid_association in drupal/core/modules/openid/openid.module
Attempt to create a shared secret with the OpenID Provider.
_openid_test_endpoint_associate in drupal/core/modules/openid/tests/openid_test.module
OpenID endpoint; handle "associate" requests (see OpenID Authentication 2.0, section 8).

File

drupal/core/modules/openid/openid.inc, line 446
OpenID utility functions.

Code

function _openid_dh_base64_to_long($str) {
  $b64 = base64_decode($str);
  return _openid_dh_binary_to_long($b64);
}