XOR simple encryption algorithm. XOR, also know as Exclusive OR, is a bitwise operator from binary mathematics. The XOR operator returns a 1 when the value of either the first bit or the second bit is a 1. The XOR operator returns a 0 when neither or both of the bits is 1.

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

Syntax

C#
public sealed class XOR : SymmetricAlgorithm, ICryptoTransform, 
	IDisposable
Visual Basic
Public NotInheritable Class XOR _
	Inherits SymmetricAlgorithm _
	Implements ICryptoTransform, IDisposable
Visual C++
public ref class XOR sealed : public SymmetricAlgorithm, 
	ICryptoTransform, IDisposable

Inheritance Hierarchy

System..::..Object
  System.Security.Cryptography..::..SymmetricAlgorithm
    LLCryptoLib.Crypto..::..XOR

See Also