You are here

function _openid_math_mul in Drupal 7

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
OpenID utility functions.

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