API Documentation

Crypt/Math/BigInteger/Interface.php

Interfaces
category
Zend
copyright
Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
license
http://framework.zend.com/license/new-bsd New BSD License
package
Zend_Crypt
subpackage
Math
version
$Id: Interface.php 20096 2010-01-06 02:05:09Z bkarwin $
Interfaces
Zend_Crypt_Math_BigInteger_Interface

Description

Zend Framework

LICENSE

This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.

Zend_Crypt_Math_BigInteger_Interface

category
Zend
copyright
Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
license
http://framework.zend.com/license/new-bsd New BSD License
package
Zend_Crypt
Methods
init
add
subtract
compare
divide
modulus
multiply
pow
powmod
sqrt
binaryToInteger
integerToBinary
hexToDecimal

Description

Support for arbitrary precision mathematics in PHP.

Interface for a wrapper across any PHP extension supporting arbitrary precision maths.

Methods

add

add(  $left_operand,  $right_operand ) :
Arguments
$left_operand
$right_operand
Details
visibility
public
final
false
static
false

binaryToInteger

binaryToInteger(  $operand ) :
Arguments
$operand
Details
visibility
public
final
false
static
false

compare

compare(  $left_operand,  $right_operand ) :
Arguments
$left_operand
$right_operand
Details
visibility
public
final
false
static
false

divide

divide(  $left_operand,  $right_operand ) :
Arguments
$left_operand
$right_operand
Details
visibility
public
final
false
static
false

hexToDecimal

hexToDecimal(  $operand ) :
Arguments
$operand
Details
visibility
public
final
false
static
false

init

init(  $operand,  $base = 10 ) :
Arguments
$operand
$base
Details
visibility
public
final
false
static
false

integerToBinary

integerToBinary(  $operand ) :
Arguments
$operand
Details
visibility
public
final
false
static
false

modulus

modulus(  $left_operand,  $modulus ) :
Arguments
$left_operand
$modulus
Details
visibility
public
final
false
static
false

multiply

multiply(  $left_operand,  $right_operand ) :
Arguments
$left_operand
$right_operand
Details
visibility
public
final
false
static
false

pow

pow(  $left_operand,  $right_operand ) :
Arguments
$left_operand
$right_operand
Details
visibility
public
final
false
static
false

powmod

powmod(  $left_operand,  $right_operand,  $modulus ) :
Arguments
$left_operand
$right_operand
$modulus
Details
visibility
public
final
false
static
false

sqrt

sqrt(  $operand ) :
Arguments
$operand
Details
visibility
public
final
false
static
false

subtract

subtract(  $left_operand,  $right_operand ) :
Arguments
$left_operand
$right_operand
Details
visibility
public
final
false
static
false
Documentation was generated by DocBlox.