Click or drag to resize
Rijndael256iDecryptString256Bit Method
Decrypts base64 string to plain text.

Namespace: TreeksLicensingLibrary
Assembly: TreeksLicensingLibrary (in TreeksLicensingLibrary.dll) Version: 1.3.5562.40448
Syntax
public string iDecryptString256Bit(
	string cipherText,
	string passPhrase,
	string saltValue = "DSFdsjdrgse6345Z6Rdfsgb534Z6TafsdgSDF5534ESERT4G6fgfhRYXGB",
	int keySize = 256,
	int passwordIterations = 7321,
	string initVector = "NMB2GMA4154887H8",
	string hashAlgorithm = "SHA1"
)

Parameters

cipherText
Type: SystemString
Base64 encrypted string
passPhrase
Type: SystemString
Password
saltValue (Optional)
Type: SystemString
Rijndael salt
keySize (Optional)
Type: SystemInt32
Rijndael key size
passwordIterations (Optional)
Type: SystemInt32
Rijndael iterations
initVector (Optional)
Type: SystemString
Rijndael initalization vector
hashAlgorithm (Optional)
Type: SystemString
Hash algorithm to use

Return Value

Type: String
Decrypted string
Remarks
You don't have to create instance of Rijndael256 object. This is here to provide support for non .NET applications using COM model, which does not support static class members.
See Also