Previous Page | Next Page

The PWENCODE Procedure

Example 3: Saving an Encoded Password to the Paste Buffer


Procedure features:

IN= argument

OUT= option

Other features:

FILENAME statement with CLIPBRD access method


This example saves an encoded password to the paste buffer. You can then paste the encoded password into another SAS program or into the password field of an authentication dialog box.


Program

 Note about code
filename clip clipbrd;
 Note about code
proc pwencode in='my password' out=clip;
run;

Previous Page | Next Page | Top of Page