SetEncryption Method

BerkeleyDB

Set the password and algorithm used by the Berkeley DB library to perform encryption and decryption.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public void SetEncryption(
	string password,
	EncryptionAlgorithm alg
)
Visual Basic (Declaration)
Public Sub SetEncryption ( _
	password As String, _
	alg As EncryptionAlgorithm _
)
Visual C++
public:
void SetEncryption(
	String^ password, 
	EncryptionAlgorithm alg
)

Parameters

password
Type: System..::.String
The password used to perform encryption and decryption.
alg
Type: BerkeleyDB..::.EncryptionAlgorithm
The algorithm used to perform encryption and decryption.

See Also