
| Features: |
|
proc authlib lib=klmno;
create securedlibrary="KLMNOEmps"
securedfolder="Department XYZZY"
pw=pqrstuvw;
tables employees /
encryptkey=lmno;
tables empinfo /
encryptkey=abcd;
tables product;
run;
quit;
lmno.
The EmpInfo data set is AES-encrypted and has the ENCRYPTKEY= value abcd.
The Product data set is not protected. proc authlib lib=klmno;
pqrstuvw. create securedlibrary="KLMNOEmps"
securedfolder="Department XYZZY"
pw=pqrstuvw; tables employees /
encryptkey=lmno;
tables empinfo /
encryptkey=abcd;
tables product;
run;
quit;351 proc authlib lib=klmno;
352 create securedlibrary="KLMNOEmps"
353 securedfolder="Department XYZZY"
354 pw=XXXXXXXX;
355 tables employees /
356 encryptkey=XXXX;
357 tables empinfo /
358 encryptkey=XXXX;
359 tables product;
360 run;
NOTE: Successfully created a secured library object for the physical library KLMNO and recorded its location as:
SecuredFolder: /System/Secured Libraries/Department XYZZY
SecuredLibrary: KLMNOEmps
SecuredLibraryGUID: 48E2C4C7-ADE1-49D2-BBFE-14E5EAAB8961
NOTE: Successfully added new secured table object "EMPLOYEES.DATA" to the secured library object at path "/System/Secured
Libraries/Department XYZZY/KLMNOEmps" for data set KLMNO.EMPLOYEES.DATA.
NOTE: The passwords on KLMNO.EMPLOYEES.DATA were successfully modified.
NOTE: Successfully added new secured table object "EMPINFO.DATA" to the secured library object at path "/System/Secured
Libraries/Department XYZZY/KLMNOEmps" for data set KLMNO.EMPINFO.DATA.
NOTE: The passwords on KLMNO.EMPINFO.DATA were successfully modified.
NOTE: Successfully added new secured table object "PRODUCT.DATA" to the secured library object at path "/System/Secured
Libraries/Department XYZZY/KLMNOEmps" for data set KLMNO.PRODUCT.DATA.
NOTE: The passwords on KLMNO.PRODUCT.DATA were successfully modified.
361 quit;