function _openid_dh_base64_to_long
Same name and namespace in other branches
- 7.x drupal-7.x/modules/openid/openid.inc \_openid_dh_base64_to_long()
1 call to _openid_dh_base64_to_long()
- openid_association in drupal-6.x/
modules/ openid/ openid.module - Attempt to create a shared secret with the OpenID Provider.
Archivo
- drupal-6.x/
modules/ openid/ openid.inc, line 271 - OpenID utility functions.
Código
function _openid_dh_base64_to_long($str) {
$b64 = base64_decode($str);
return _openid_dh_binary_to_long($b64);
}