Previous Page | Next Page

The PWENCODE Procedure

Example 4: Specifying an Encoding Method for a Password


Procedure features: METHOD= argument

This example shows a simple case of encoding a password using the sas003 encoding method and writing the encoded password to the SAS log.


Program

 Note about code
proc pwencode in='my password' method=sas003;
run;

Log

6    proc pwencode in='my password' encoding=sas003;
7    run;

{sas003}6EDB396015B96DBD9E80F0913A543819A8E5

NOTE: PROCEDURE PWENCODE used (Total process time):
      real time           0.14 seconds
      cpu time            0.09 seconds

Previous Page | Next Page | Top of Page