Example 13: Binding a Library with Required AES Encryption When
Existing Data Sets Are Encrypted with the Same Encryption Key
Features:PROC AUTHLIB statement options
CREATE statement options:
ENCRYPT=
ENCRYPTKEY=
PW=
REQUIRE_ENCRYPTION
SECUREDLIBRARY=
SECUREDFOLDER=
Details
This example demonstrates how to bind a library with requiring that all of the data sets
in this metadata-bound library have AES encryption and have the same encryption key.
Program
proc authlib lib=abcde;
create seclib="ABCDEEmps"
securedfolder="Department XYZZY"
pw=secret
require_encryption=yes
encrypt=aes
encryptkey=abc ;
run;
quit;
Program Description
Library ABCDE has three data ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.