ENCODE ( expression )An expression that results in a character string value. If you use a constant, you must enclose it in quotation marks (" ").This procedure uses the ENCODE function to disguise a password that the user enters, and then displays the encoded password:
DEFINE VARIABLE password AS CHARACTER NO-UNDO FORMAT "x(16)".DEFINE VARIABLE id AS CHARACTER NO-UNDO FORMAT "x(12)".DEFINE VARIABLE n-coded-p-wrd AS CHARACTER NO-UNDO FORMAT "x(16)".SET id LABEL "Enter user id" password LABEL"Enter password" BLANK WITH CENTERED SIDE-LABELS.n-coded-p-wrd = ENCODE(password).DISPLAY n-coded-p-wrd LABEL "Encoded password".
![]()
The ENCODE function performs a one-way encoding operation that you cannot reverse. It is useful for storing scrambled copies of passwords in a database. It is impossible to determine the original password by examining the database. However, a procedure can prompt a user for a password, encode it, and compare the result with the stored, encoded password to determine if the user supplied the correct password.
![]()
In order to ensure reliable results, the original encoding and any subsequent encoded comparisons must run in the same code page. In environments with multiple code pages, Progress Software Corporation strongly recommends that programs use the CODEPAGE-CONVERT function so that occurrences of the ENCODE function related to the same strings run in the same code page.
![]()
The output of the ENCODE function is 16 characters long. Make sure the target field size is at least 16 characters long.
© 2012 Progress Software Corporation and/or its subsidiaries or affiliates. |