function _openid_math_mul

Calls the mul function from the available math library for OpenID.

1 call to _openid_math_mul()
_openid_dh_binary_to_long in modules/openid/openid.inc

File

modules/openid/openid.inc, line 753

Code

function _openid_math_mul($x, $y) {
    $library = _openid_get_math_library();
    switch ($library) {
        case 'gmp':
            return gmp_mul($x, $y);
        case 'bcmath':
            return bcmul($x, $y);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.