BufferedComputation.process

Update and finalize computation. Does the same as calling update() and finished() consecutively.

  1. SecureVector!ubyte process(ubyte[] input)
  2. SecureVector!ubyte process(const(ubyte)* input, size_t length)
    interface BufferedComputation
    public final
    SecureVector!ubyte
    process
    (
    const(ubyte)* input
    ,
    size_t length
    )
  3. SecureVector!ubyte process(RefCounted!(Vector!(ubyte, ALLOC), ALLOC) input)
  4. SecureVector!ubyte process(Vector!(ubyte, ALLOC) input)
  5. SecureVector!ubyte process(string input)

Parameters

input const(ubyte)*

the input to process as a ubyte array

length size_t

the length of the ubyte array

Return Value

Type: SecureVector!ubyte

The result of the call to finished()

Meta