This
example shows how to set the options for encryption services on a
SAS/SHARE server. The NETENCRYPT
option specifies that encryption is required by any client that accesses
this server. The NETENCRYPTALGORITHM= option specifies that the SASProprietary
algorithm be used for encryption of all data that is exchanged with
connecting clients.
options netencrypt netencryptalgorithm=sasproprietary;
options comamid=tcp;
proc server id=share1;
run;