Discuss this help topic in SecureBlackbox Forum

TElDomainKeysSigner.ProcessBodyLine

TElDomainKeysSigner     See also     


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


Processes one line of the message body during digest calculation.

Declaration

[C#]
    int ProcessBodyLine(string S);

[VB.NET]
    Function ProcessBodyLine(ByVal S As String) As Integer

[Pascal]
    function ProcessBodyLine(S: string): Integer;

[C++]
    int32_t ProcessBodyLine(const std::string &S);

[PHP]
    integer ProcessBodyLine(string $S)

[Java]
    int processBodyLine(String S);

Parameters

  • S - the line from the message body

Return value

    Returns error code.

Values of error codes:

Description

    Use this method to update the message digest with the digest of message body line. Use ProcessMessage to process the whole message at once.

See also:     ProcessHeader     ProcessMessage    

Discuss this help topic in SecureBlackbox Forum