GF128.power

raises x to the power 'pow' by squaring x <- x^pow

struct GF128
static
void
power
nothrow @nogc
(
T
)
(
T[] x
,
ulong pow
)
if (
isIntegral!T
)
in { assert (x.length * T.sizeof * 8 == BLOCKLEN, "invalid length. expected 16 bytes."); }

Parameters

x
Type: T[]

this value gets raised to the power pow

pow
Type: ulong

the power

Meta