| The PWENCODE Procedure |
| Procedure features: | IN= argument |
This example shows a simple case of encoding a password and writing the encoded password to the SAS log.
| Program |
| |
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
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.