Features: |
|
proc authlib lib=abcde;
modify seclib="ABCDEEmps" securedfolder="Department XYZZY" pw=secret require_encryption=yes encrypt=aes encryptkey=new;
tables employee / encryptkey=abc; tables empinfo / encryptkey=def; tables deptname ; run; quit;
abc
.
The EmpInfo data set has the encryption key value def
.
The DeptName data set is not AES-encrypted. proc authlib lib=abcde;
modify seclib="ABCDEEmps" securedfolder="Department XYZZY" pw=secret require_encryption=yes encrypt=aes encryptkey=new;
tables employee / encryptkey=abc; tables empinfo / encryptkey=def; tables deptname ; run; quit;
628 proc authlib lib=abcde; 629 modify seclib="ABCDEEmps" 630 securedfolder="Department XYZZY" 631 pw=XXXXXX 632 require_encryption=yes 633 encrypt=aes 634 encryptkey=XXX; 635 tables employee / 636 encryptkey=XXX; 637 tables empinfo / 638 encryptkey=XXX; 639 tables deptname ; 640 run; NOTE: Changing library to require encryption. NOTE: Required encryption will use AES encryption with the recorded key. NOTE: The passwords on ABCDE.EMPLOYEE.DATA do not require modification. NOTE: Copying data set ABCDE.EMPLOYEE in place to do required encryption with the library's required encryption key and passwords. NOTE: Renaming the data set ABCDE.EMPLOYEE to ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: Copying the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__ to ABCDE.EMPLOYEE. NOTE: There were 5 observations read from the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: The data set ABCDE.EMPLOYEE has 5 observations and 6 variables. NOTE: Deleting the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: The passwords on ABCDE.EMPINFO.DATA do not require modification. NOTE: Copying data set ABCDE.EMPINFO in place to do required encryption with the library's required encryption key and passwords. NOTE: Renaming the data set ABCDE.EMPINFO to ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: Copying the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__ to ABCDE.EMPINFO. NOTE: There were 5 observations read from the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: The data set ABCDE.EMPINFO has 5 observations and 6 variables. NOTE: Deleting the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: The passwords on ABCDE.DEPTNAME.DATA do not require modification. NOTE: Copying data set ABCDE.DEPTNAME in place to do required encryption with the library's required encryption key and passwords. NOTE: Renaming the data set ABCDE.DEPTNAME to ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: Copying the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__ to ABCDE.DEPTNAME. NOTE: There were 4 observations read from the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: The data set ABCDE.DEPTNAME has 4 observations and 2 variables. NOTE: Deleting the data set ABCDE.__TEMP_ENCRYPT_FILE_NAME__. NOTE: The passwords and/or encryption options for the secured library object with path "/System/Secured Libraries/Department XYZZY/ABCDEEmps" were successfully modified." 641 quit;