Software Licensing

Cloud based software licensing platform with support for .NET (C# and VB.NET) and C++ (for both Windows and Linux)

Introduction

Cryptolens platform offers a cloud-based software licensing, called SKM, to help you add support for license key management in your app. Our platform is platform-independent, with focus on the .NET platform (eg. C# and VB.NET) and C++ (for both Windows and Linux).

Once you have added our client API into your software, it’s quite trivial to perform very complex license checks (as shown below):

// Verify the license
var license = Key.Activate(...);

if (license.HasFeature(1)
           .HasNotExpired()
           .IsValid())
{

// license is valid!

}

Getting Started

To get started, we recommend to review:

  1. 3 steps to get started
  2. Getting started tutorial
  3. Code examples