function _openid_dh_long_to_base64
Same name and namespace in other branches
- 6.x drupal-6.x/modules/openid/openid.inc \_openid_dh_long_to_base64()
3 calls to _openid_dh_long_to_base64()
- OpenIDTestCase::testConversion in drupal-7.x/
modules/ openid/ openid.test - Test _openid_dh_XXX_to_XXX() functions.
- openid_association_request in drupal-7.x/
modules/ openid/ openid.module - _openid_test_endpoint_associate in drupal-7.x/
modules/ openid/ tests/ openid_test.module - OpenID endpoint; handle "associate" requests (see OpenID Authentication 2.0, section 8).
Archivo
- drupal-7.x/
modules/ openid/ openid.inc, line 468 - OpenID utility functions.
Código
function _openid_dh_long_to_base64($str) {
return base64_encode(_openid_dh_long_to_binary($str));
}