To continue reading for free, register below or login
To read more you must become a member of SearchDomino.com
');
// -->

Lotus Notes database encryption is actually a database property that can be set using the create replica dialog. It also can be set or cleared later in the "Encryption Settings" dialog, found in the "Basics" tab of the database properties dialog.
Unfortunately, I've found that the encryption setting isn't exposed programmatically, although I haven't investigated DXL or the database design class available on the LDD sandbox for references. Nonetheless, you may not need to set it. Starting in Lotus Notes Domino R6, local replica copies receive medium-level encryption settings by default. If this suits your needs, you can create the replica:
Dim Session s = new NotesSession
Dim replicaCopy as NotesDatabase
Set replicaCopy =
s.currentDatabase.CreateReplica("","filename.nsf")
Do you have comments on this Ask the Expert Q&A? Let us know.
Related information from SearchDomino.com:
Tip: Encryption and privacy in Lotus Notes Domino
Tip: How and why to change replica IDs during a Notes Domino upgrade
Reference Center: Lotus Notes Domino Email Encryption
Reference Center: Lotus Notes Domino Replication and Synchronization
Reference Center: LotusScript
|