Creates an instance of the specified cryptographic object used to perform the RC4 transformation.

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

Syntax

C#
public static RC4 Create(
	string algName
)
Visual Basic
Public Shared Function Create ( _
	algName As String _
) As RC4
Visual C++
public:
static RC4^ Create(
	String^ algName
)

Parameters

algName
Type: System..::..String
The name of the specific implementation of RC4 to create.

Return Value

A cryptographic object.

Exceptions

ExceptionCondition
System.Security.Cryptography..::..CryptographicExceptionAn error occurs while acquiring the CSP.
System..::..InvalidOperationExceptionFIPS compliance is required, but the current implementation isn't FIPS verified.

See Also