Adds the given rows and encrypts the contents of the table using the user's password as passphrase

Namespace: White_Tiger
Assembly: White Tiger (in White Tiger.dll) Version: 0.1.3.5 (0.1.3.5)

Syntax

C#
public void Encrypt(
	string root,
	string recordtag,
	string username,
	string dbname,
	string tablename,
	List<Object[]> rows,
	string pass,
	string alg,
	string hashalg,
	string passphrase
)
Visual Basic
Public Sub Encrypt ( 
	root As String,
	recordtag As String,
	username As String,
	dbname As String,
	tablename As String,
	rows As List(Of Object()),
	pass As String,
	alg As String,
	hashalg As String,
	passphrase As String
)
Visual C++
public:
virtual void Encrypt(
	String^ root, 
	String^ recordtag, 
	String^ username, 
	String^ dbname, 
	String^ tablename, 
	List<array<Object^>^>^ rows, 
	String^ pass, 
	String^ alg, 
	String^ hashalg, 
	String^ passphrase
) sealed

Parameters

root
Type: System..::..String
root element of xml files
recordtag
Type: System..::..String
element that holds the cells
username
Type: System..::..String
user's name table belongs to
dbname
Type: System..::..String
name of database
tablename
Type: System..::..String
name of table
rows
Type: System.Collections.Generic..::..List<(Of <(<'array<Object>[]()[][]>)>)>
rows to be added
pass
Type: System..::..String
password of userfor autherication
alg
Type: System..::..String
cryptographic algorithm to be used
hashalg
Type: System..::..String
hashing algorithm to be used for the creation of password
passphrase
Type: System..::..String
the passhprase will be usedfor encryption

Implements

IWhiteTigerService..::..Encrypt(String, String, String, String, String, List<(Of <<'(array<Object>[]()[][]>)>>), String, String, String, String)

See Also