Represents the base class from which all implementations of the RC4 symmetric stream cipher must inherit.

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

Syntax

C#
public abstract class RC4 : SymmetricAlgorithm
Visual Basic
Public MustInherit Class RC4 _
	Inherits SymmetricAlgorithm
Visual C++
public ref class RC4 abstract : public SymmetricAlgorithm

Remarks

RC4 is a trademark of RSA Data Security Inc.

Inheritance Hierarchy

System..::..Object
  System.Security.Cryptography..::..SymmetricAlgorithm
    LLCryptoLib.Security.Cryptography..::..RC4
      LLCryptoLib.Security.Cryptography..::..ARCFourManaged
      LLCryptoLib.Security.Cryptography..::..RC4CryptoServiceProvider

See Also