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)
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.

File

drupal-6.x/modules/openid/openid.inc, line 271
OpenID utility functions.

Code

function _openid_dh_base64_to_long($str) {
  $b64 = base64_decode($str);

  return _openid_dh_binary_to_long($b64);
}