GCM.processBytes

Process a block of bytes from in putting the result into out.

struct GCM(T)
nothrow
ubyte[]
processBytes
(
in ubyte[] input
,
ubyte[] output
)
if (
is(T == void) ||
(
T.blockSize == 16
)
)

Parameters

input ubyte[]

The input byte array.

output ubyte[]

The output buffer the processed bytes go into.

Return Value

Type: ubyte[]

Returns a slice pointing to the output data.

Meta