Difference between revisions of "DES3 ENCRYPT()"

From Lianjapedia
Jump to: navigation, search
(Created page with "==Purpose== Function to return the 3DES encrypted value for a character string ==Syntax== DES3_ENCRYPT(<cExp>, <cKey1> [, <cKey2> [, <cKey3>]]) ==See Also== CRC32(), D...")
 
Line 25: Line 25:
 
|-
 
|-
 
|}
 
|}
 +
 +
This function was added in Lianja 2.0.2.
  
 
==Example==
 
==Example==

Revision as of 06:40, 18 November 2015

Purpose

Function to return the 3DES encrypted value for a character string

Syntax

DES3_ENCRYPT(<cExp>, <cKey1> [, <cKey2> [, <cKey3>]])

See Also

CRC32(), DES3_DECRYPT(), MD5(), MD5FILE(), SHA1(), SHA1FILE(), SYS()

Description

The DES3_ENCRYPT() function is used to return the 3DES value for the character string, <cExp>, based on the specified key or keys <cKey1>, <cKey2>, <cKey3>.

Used with the same key or keys, the DES3_DECRYPT() function will return the decrypted value.

Keywords Description
cExp Character expression to be encrypted.
cKey1 Character expression to use as the first encryption key. Maximum 8 characters.
cKey2 Character expression to use as the second encryption key. Maximum 8 characters. Optional.
cKey3 Character expression to use as the third encryption key. Maximum 8 characters. Optional.

This function was added in Lianja 2.0.2.

Example

cEncrypted = des3_encrypt("LIANJA","abcdefgh","ijklmnop","qrstuvwx")
cDecrypted = des3_decrypt(cEncrypted,"abcdefgh","ijklmnop","qrstuvwx")