Difference between revisions of "Extensions.Flash.GetChecksum"
Jump to navigation
Jump to search
(Created page with "Category:Flash == Classification == {{ClassificationActivity | GetChecksum | Return the checksum information of a block or a session | Term | Flash|OTX Flash extensi...") |
|||
Line 5: | Line 5: | ||
== Pseudo-Code Syntax == | == Pseudo-Code Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | String | + | String GetChecksum(FlashSession session, Integer security); |
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 10:19, 1 August 2014
Contents
Classification
Name | GetChecksum |
Short Description | Return the checksum information of a block or a session |
Class | Term |
Extension | OTX Flash extension |
Group | Security related terms |
Exceptions | OutOfBoundsException |
Checker Rules | - |
Standard Compliant | Yes |
Pseudo-Code Syntax
String GetChecksum(FlashSession session, Integer security);
Description
The GetChecksum term is the checksum information of a block or a session.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
String | The checksum information of a block or a session. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
FlashSession | FlashSession | Term | - | [1] | This element represents the FlashSession in which the block containing the segment resides. |
Block | Integer | Term | - | [0..1] | This element represents the number of the block whose signature shall be returned. |
Security | Integer | Term | - | [1] | This element defines the number of the security on which the term execution is based. |
Examples
String result = GetChecksum(flashSession, 0, 0);