Skip to content

Releases: Cryptolens/cryptolens-java

v1.27: Maven package + ExtendLicense method + remove commons-codec

28 Aug 12:32

Choose a tag to compare

This release introduces the following changes:

  1. We dropped commons-codec and replaced with a built in library in Java 8. Java 7, which is deprecated, required this dependency.
  2. GetMachineCode is cross platform when called with v=3. Calling with v=2 will use the older version that did not include Mac and Linux.
  3. oshi-core is optional. To avoid it, you can just call GetMachineCode with v=2 (Win) or v=3(Win+Mac+Linux).
  4. If you use oshi-core, we upgraded it to a newer version to fix issues on newer platforms.
  5. Introduced ExtendLicense method.

The package can be installed using Maven Central as per instructions on this page: https://central.sonatype.com/artifact/io.cryptolens/cryptolens/overview. This release includes a jar file as well.

Thanks to @sbraconnier, @sergey-oplavin and @stokpop.

v1.26: Update to HasFeature method

22 Sep 09:30

Choose a tag to compare

Minor update to HasFeature method and update of the gson library.

v1.25: Update method to obtain UUID

28 Jun 12:57

Choose a tag to compare

This version changes the way UUID is computed on Windows with v=2 (i.e. when either Helpers.GetMachineCode or Helpers.IsOnRightMachine is called with version parameter set to 2). Instead of using WMIC, the following command is used instead:

cmd /c powershell.exe -Command "(Get-CimInstance -Class Win32_ComputerSystemProduct).UUID"

Please note that in case of an error when retrieving the UUID, null will be returned.

v1.24: Add an option to disable SSL verification

10 Nov 12:50

Choose a tag to compare

SSL certificate verification can be disable by setting adding the following line before calling e.g., Key.Activate:

HelperMethods.SSLVerifyEnabled=false;

v1.24: Add an option to disable SSL verification

08 Nov 13:03

Choose a tag to compare

SSL certificate verification can be disable by setting adding the following line before calling Key.Activate:

HelperMethods.SSLEnabled=false;

v1.23: Add a new method to compute the machine code + new overload of GetKey

22 Oct 10:22
f04fc03

Choose a tag to compare

v1.22: Fix for floating licenses in offline mode using the license server

15 Oct 12:34

Choose a tag to compare

v1.21: Add support for Messaging API + API error fix

16 Sep 12:21

Choose a tag to compare

v1.20: Add support for the license server

18 Feb 09:16
0cc0cd1

Choose a tag to compare

v1.19: Fixes to Helpers.IsOnRightMachine + support for friendly name

23 Oct 08:31

Choose a tag to compare