Specifies the license encoding format. LicenseEncodingFormat affects the length and the type of characters that will be included in the generated license key.
Namespace: SimpleMode.SecureLicenseManagerAssembly: SimpleMode.SecureLicenseManager (in SimpleMode.SecureLicenseManager.dll) Version: 1.5.5120.0 (1.5.5120.0)
Syntax
C# |
---|
public enum LicenseEncodingFormat |
Visual Basic |
---|
Public Enumeration LicenseEncodingFormat |
Visual C++ |
---|
public enum class LicenseEncodingFormat |
Members
Member name | Value | Description | |
---|---|---|---|
Unknown | -1 | No / unknown or invalid license format. | |
Base16 | 0 | Hex based license encoding format. Generated license key characters will include numbers and letters A to F. | |
Base32 | 1 | license encoding format that uses base 32 encoding. Generated license key characters will include numbers 2 to 9 and letters from A to Z with the exception of I and O. | |
Base62 | 2 | license encoding format that uses base 62 encoding. Generated license key characters will include numbers, upper case letters A to Z and lower case letters a to z. | |
Base64 | 3 | license encoding format that uses base 64 encoding. Generated license key characters will include numbers, upper case letters A to Z, the symbols '+', '/' and '=' that is used for trailing padding. |