BufferedComputation.update

Add new input to process.

  1. void update(ubyte[] input)
  2. void update(const(ubyte)* input, size_t length)
    interface BufferedComputation
    final
    void
    update
    (
    const(ubyte)* input
    ,
    size_t length
    )
  3. void update(RefCounted!(Vector!(T, ALLOC)) input)
  4. void update(Vector!(T, ALLOC) input)
  5. void update(string str)
  6. void update(ubyte input)

Parameters

input const(ubyte)*

the input to process as a ubyte array

length size_t

of param in in bytes

Meta