To execute a selftest.

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

Syntax

C#
public static bool RunSelfTest()
Visual Basic
Public Shared Function RunSelfTest As Boolean
Visual C++
public:
static bool RunSelfTest()

Return Value

True if the selftest passed or false is it failed. In such a case you must not use the cipher to avoid data corruption!

Remarks

Call this method to make sure that the implemenation is able to produce valid output according to the specification. This should usually be done at process startup time, before the usage of this class and its inherited variants.

See Also