|
|
Compute the checksum of a text string. This routine uses Fletcher's checksum.
Numeric checksum.
<cfx_kmSecurity F=CheckSum V=variable SHOW
TEXT=text >
| Attribute | Description | Required? |
| TEXT | Any text. | YES |
| Examples | |
|
<cfx_kmSecurity F=CheckSum TEXT="This is a test">
|
|
| Result: |
35321 |
Numeric 16 bit CRC.
<cfx_kmSecurity F=CRC16 V=variable SHOW
TEXT=text >
| Attribute | Description | Required? |
| TEXT | Any text. | YES |
| Examples | |
|
<cfx_kmSecurity F=CRC16 TEXT="This is a test">
|
|
| Result: |
35093 |
Numeric 32 bit CRC.
<cfx_kmSecurity F=CRC32 V=variable SHOW
TEXT=text >
| Attribute | Description | Required? |
| TEXT | Any text. | YES |
| Examples | |
|
<cfx_kmSecurity F=CRC32 TEXT="This is a test">
|
|
| Result: |
880740245 |
Deciphered (unencrypted) text.
<cfx_kmSecurity F=Decipher V=variable SHOW
TEXT=enciphered-text >
| Attribute | Description | Required? |
| TEXT | Text string, which has been encoded by Encipher. | YES |
| Examples | |
|
<cfx_kmSecurity F=Decipher CODED="G..Hs%Vk]s16J1">
|
|
| Result: |
This is a test |
Encrypted text, in ASCII format.
<cfx_kmSecurity F=Encipher V=variable SHOW
TEXT=coded >
| Attribute | Description | Required? |
| TEXT | Any text. | YES |
| Examples | |
|
<cfx_kmSecurity F=Encipher V="CodedStr" SHOW
TEXT="This is a test"> |
|
| Result: |
G..Hs%Vk]s16J1 |
Numeric hash value.
<cfx_kmSecurity F=Hash V=variable SHOW
TEXT=text >
| Attribute | Description | Required? |
| TEXT | Any text. | YES |
| Examples | |
|
<cfx_kmSecurity F=Hash TEXT="This is a test">
|
|
| Result: |
909600624 |
Numeric checksum.
<cfx_kmSecurity F=InternetSum V=variable SHOW
TEXT=text >
| Attribute | Description | Required? |
| TEXT | Any text. | YES |
| Examples | |
|
<cfx_kmSecurity F=InternetSum TEXT="This is a test">
|
|
| Result: |
382 |