function _openid_dh_long_to_base64 in Drupal 7
Same name and namespace in other branches
- 6 modules/openid/openid.inc \_openid_dh_long_to_base64()
3 calls to _openid_dh_long_to_base64()
- OpenIDTestCase::testConversion in modules/
openid/ openid.test - Test _openid_dh_XXX_to_XXX() functions.
- openid_association_request in modules/
openid/ openid.module - _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 474 - OpenID utility functions.
Code
function _openid_dh_long_to_base64($str) {
return base64_encode(_openid_dh_long_to_binary($str));
}