Decrypts the table's file and returns the contents.

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

Syntax

C#
public string Decrypt(
	string root,
	string recordtag,
	string username,
	string dbname,
	string tablename,
	string pass,
	string alg,
	string hashalg,
	string passphrase
)
Visual Basic
Public Function Decrypt ( 
	root As String,
	recordtag As String,
	username As String,
	dbname As String,
	tablename As String,
	pass As String,
	alg As String,
	hashalg As String,
	passphrase As String
) As String
Visual C++
public:
virtual String^ Decrypt(
	String^ root, 
	String^ recordtag, 
	String^ username, 
	String^ dbname, 
	String^ tablename, 
	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
pass
Type: System..::..String
password of user
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
passphrse to be used for decryption

Return Value

Type: String
contents of the table

Implements

IWhiteTigerService..::..Decrypt(String, String, String, String, String, String, String, String, String)

See Also