Chapter Contents

Previous

Next
SAS/CONNECT User's Guide

SAS/SHARE Example


SAS/SHARE Client

Specify the following statements in a client session:

options netencryptalgorithm=rc4;
options comamid=tcp;
libname sasdata 'edc.prog2.sasdata' server=rmthost.share1;

The NETENCRYPTALGORITHM option specifies that the RC4 algorithm be used for encryption in the client session.


SAS/SHARE Server

Specify the following statements in a SAS/SHARE server session:

options netencrypt netencryptalgorithm=rc4;
options comamid=tcp;
proc server id=share1;
run;

The NETENCRYPT option specifies that encryption is required by any client that accesses this server. The NETENCRYPTALGORITHM option specifies that the RC4 algorithm be used for encryption of all data that is exchanged with connecting clients.


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.