TextCrypter factory method. For each SupportedTextAlgorithm, these parameters are taken into account:
  • TextROT13
  • POLYALPHABETIC
  • PLAYFAIR
  • PSEUDODES
  • DES
  • TRIPLEDES
  • RIJNDAEL
TextAlgorithmParameters

Namespace: LLCryptoLib.Crypto
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public static TextCrypter Create(
	SupportedTextAlgorithms algorithm,
	TextAlgorithmParameters parameters
)
Visual Basic
Public Shared Function Create ( _
	algorithm As SupportedTextAlgorithms, _
	parameters As TextAlgorithmParameters _
) As TextCrypter
Visual C++
public:
static TextCrypter^ Create(
	SupportedTextAlgorithms algorithm, 
	TextAlgorithmParameters^ parameters
)

Parameters

algorithm
Type: LLCryptoLib.Crypto..::..SupportedTextAlgorithms
The SupportedTextAlgorithms ID for the algorithm to be used
parameters
Type: LLCryptoLib.Crypto..::..TextAlgorithmParameters
A set of parameters

Return Value

An initialized TextCrypter object

Exceptions

See Also