Determines the EC key strength.


Namespace: SeriousBit.Ellipter
Assembly: SeriousBit.Ellipter (in SeriousBit.Ellipter.dll)

Syntax

Visual Basic (Declaration)
Public Enum KeyStrength
C#
public enum KeyStrength
C++
public enum class KeyStrength
J#
public enum KeyStrength
JScript
public enum KeyStrength

Members

Member NameDescription
Use128Bits128 bit encryption algorithm. Creates the shortest serials.
Use160Bits160 bit encryption algorithm. Offers strong encryption with a relatively small CPU usage. Recommended for most applications.
Use192Bits192 bit encryption algorithm. Strong but CPU intensive.
Use224Bits224 bit encryption algorithm. Strong but CPU intensive.
Use256Bits256 bit encryption algorithm. Strong but CPU intensive.
Use384Bits384 bit encryption algorithm. Strong but CPU intensive.
Use521Bits512 bit encryption algorithm. The strongest implemented in Ellipter. Uses a lot of CPU power on serial generation/validation.

See Also