pssht
latest
SSH server library written in PHP
|
Public Member Functions | |
__construct ($x=null, $y=null) | |
__get ($name) | |
__set ($name, $value) | |
isIdentity (\fpoirotte\Pssht\ECC\Curve $curve) | |
multiply (\fpoirotte\Pssht\ECC\Curve $curve, $n) | |
offsetExists ($offset) | |
offsetGet ($offset) | |
offsetSet ($offset, $value) | |
offsetUnset ($offset) | |
serialize (\fpoirotte\Pssht\ECC\Curve $curve) | |
Static Public Member Functions | |
static | add (\fpoirotte\Pssht\ECC\Curve $curve,\fpoirotte\Pssht\ECC\Point $P,\fpoirotte\Pssht\ECC\Point $Q) |
static | unserialize (\fpoirotte\Pssht\ECC\Curve $curve, $s) |
Protected Attributes | |
$coordinates | |
The points coordinates (x, y). | |
fpoirotte\Pssht\ECC\Point::offsetExists | ( | $offset | ) |
Whether or not an offset exists.
This method is executed when using isset() or empty() on objects implementing ArrayAccess.
mixed | $offset | An offset to check for. |
bool | true is returned when the offset exists, false when it doesn't. |
true
. Implements ArrayAccess.
fpoirotte\Pssht\ECC\Point::offsetGet | ( | $offset | ) |
Returns the value at specified offset.
This method is executed when checking if offset is empty().
mixed | $offset | The offset to retrieve. |
mixed | Value at the specified offset. |
Implements ArrayAccess.
fpoirotte\Pssht\ECC\Point::offsetSet | ( | $offset, | |
$value | |||
) |
Assigns a value to the specified offset.
mixed | $offset | The offset to assign the value to. |
mixed | $value | The value to set. |
Implements ArrayAccess.
fpoirotte\Pssht\ECC\Point::offsetUnset | ( | $offset | ) |
Unsets an offset.
mixed | $offset | The offset to unset. |
(unset). Implements ArrayAccess.