Search notes:

SAS: proc pwencode

filename pw 'p:\ath\to\file\to\create\password';

proc pwencode
     in  = 'secretGarden'
/*   
     Use the out option to write the encoded password
     into a file.
     Without the out option, pwencode would write
       {SAS002}5D71C73D177DE3AB1488316D52BDEBDE1ADDF998
     into the log.

    {SAS002} is the key needed to decode the encoded
     password back into the original password.        */
     out =  pw;
run;

data _null_;

   infile pw truncover;
   input  pw_line :$50.;

/* Read the encoded password into a macro variable: */
   call symputx('pwd', pw_line);
run;

%put Encoded password is &pwd;
Github repository about-SAS, path: /programming/proc/pwencode/in-out.sas
proc pwencode
     in     ="secretGarden"
     method = sas004;
run;
Github repository about-SAS, path: /programming/proc/pwencode/method.sas

See also

SAS programming: proc

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Companie...', 1759408131, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Companies-Products/SAS/programming/proc/pwencode/index(71): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78