Previous Page | Next Page

The PWENCODE Procedure

Example 1: Encoding a Password


Procedure features: IN= argument

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


Program

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

Log

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

{sas002}bXkgcGFzc3dvcmQ=

NOTE: PROCEDURE PWENCODE used (Total process time):
      real time           0.31 seconds
      cpu time            0.08 seconds

Previous Page | Next Page | Top of Page