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