Same name and namespace in other branches
  1. 7.x modules/openid/openid.inc \_openid_dh_base64_to_long()
1 call to _openid_dh_base64_to_long()
openid_association in modules/openid/openid.module
Attempt to create a shared secret with the OpenID Provider.

File

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);
}