class Utilities (View source)

Helper Utilities

Methods

static string
hash256(string $data, bool $raw = false)

Run sha256 hash on $data twice

static string
sha256(string $data, bool $raw = false)

Run sha256 hash on $data

static int|float|string
swapEndian(string $hex, bool $hexdec = true)

Swap endianness of an hexadecimal string.

static string
varIntEncode(int $n, bool $prefix = true)

Encode an int to a hexadecimal variable int.

Details

static string hash256(string $data, bool $raw = false)

Run sha256 hash on $data twice

Parameters

string $data
bool $raw

If true return the raw binary data.

Return Value

string

static string sha256(string $data, bool $raw = false)

Run sha256 hash on $data

Parameters

string $data
bool $raw

If true return the raw binary data.

Return Value

string

static int|float|string swapEndian(string $hex, bool $hexdec = true)

Swap endianness of an hexadecimal string.

Parameters

string $hex
bool $hexdec

[Default true] convert from hex to decimal.

Return Value

int|float|string

static string varIntEncode(int $n, bool $prefix = true)

Encode an int to a hexadecimal variable int.

Parameters

int $n

the number to encode

bool $prefix

Include the var int prefix.

Return Value

string

the encoded hexadecimal value of $n with endian swapped.