function _openid_dh_base64_to_long
7.x openid.inc | _openid_dh_base64_to_long($str) |
6.x openid.inc | _openid_dh_base64_to_long($str) |
3 calls to _openid_dh_base64_to_long()
- OpenIDTestCase::testConversion in drupal-7.x/
modules/ openid/ openid.test - Test _openid_dh_XXX_to_XXX() functions.
- openid_association in drupal-7.x/
modules/ openid/ openid.module - Attempt to create a shared secret with the OpenID Provider.
- _openid_test_endpoint_associate in drupal-7.x/
modules/ openid/ tests/ openid_test.module - OpenID endpoint; handle "associate" requests (see OpenID Authentication 2.0, section 8).
File
- drupal-7.x/
modules/ openid/ openid.inc, line 462 - OpenID utility functions.
Code
function _openid_dh_base64_to_long($str) {
$b64 = base64_decode($str);
return _openid_dh_binary_to_long($b64);
}