Discuss this help topic in SecureBlackbox Forum

TElHashFunction.UpdateStream

TElHashFunction     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Updates data for hashing.

Declaration

[C#]
    void UpdateStream(System.IO.Stream Stream, long Count);

[VB.NET]
    Sub UpdateStream(ByVal Stream As System.IO.Stream, ByVal Count As Long)

[Pascal]
    procedure UpdateStream(Stream : TStream; Count : Int64 = 0);

[C++]
    void UpdateStream(TStream &Stream, int64_t Count);
    void UpdateStream(TStream *Stream, int64_t Count);

[PHP]
    void UpdateStream(TStream $Stream, integer $Count)

[Java]
    void updateStream(InputStream Stream, long Count);
    void updateStream(TElStream Stream, long Count);

Parameters

  • Stream - Stream containing data for update
  • Count - Number of bytes to be read from Stream

Description

    Use this method to update the hash data from stream. To update hash data from memory buffer, use Update method.

See also:     Reset     Update    

Discuss this help topic in SecureBlackbox Forum