All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.java.truelicense.core.package-info Maven / Gradle / Ivy

Go to download

The TrueLicense Core module provides essential functionality for license management.

There is a newer version: 2.6.6
Show newest version
/*
 * Copyright (C) 2005-2015 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */
/**
 * Provides life cycle management for license keys.
 * License keys are small binary objects which can be stored in a file, a
 * preferences node, the heap or any custom implementation of the
 * {@link net.java.truelicense.core.io.Store} interface.
 * License keys pass the following life cycle phases:
 * 
    *
  1. {@linkplain net.java.truelicense.core.LicenseVendorManager#create Creation}, *
  2. {@linkplain net.java.truelicense.core.LicenseConsumerManager#install installation}, *
  3. {@linkplain net.java.truelicense.core.LicenseConsumerManager#view viewing}, *
  4. {@linkplain net.java.truelicense.core.LicenseConsumerManager#verify verification} and *
  5. {@linkplain net.java.truelicense.core.LicenseConsumerManager#uninstall uninstallation} *
*

* These operations are defined in the * {@link net.java.truelicense.core.LicenseVendorManager} and the * {@link net.java.truelicense.core.LicenseConsumerManager} interfaces. * A Free Trial Period (FTP) is * {@linkplain net.java.truelicense.core.LicenseConsumerContext#ftpManager configurable} * with a license consumer manager in order to ease the conversion of prospects * to customers. * License consumer managers can also get * {@linkplain net.java.truelicense.core.LicenseConsumerContext#chainedManager chained} * in order to unlock application features based on the purchased license keys. *

* A license bean is an instance of the * {@link net.java.truelicense.core.License} class. * This class follows the Java Bean pattern and defines common properties for * the licensing subject, issue date, issuer, holder, consumer type/amount, * validity period and custom data. * These properties get * {@linkplain net.java.truelicense.core.LicenseInitialization#initialize initialized} * and * {@linkplain net.java.truelicense.core.LicenseValidation#validate validated} * whenever a license key gets created. * They also get validated whenever a license key gets installed or verified. *

* A license key gets created from a license bean by applying the following * function composition: *

 * {@code encrypt(compress(encode(sign(encode(validate(initialize(duplicate(licenseBean))))))))}
 * 
*

* When installing or verifying a license key, a duplicate of the original * license bean gets derived by applying the following (almost * inverse) function composition (note that there is no initialization and * hence no duplication required): *

 * {@code validate(decode(authenticate(decode(decompress(decrypt(licenseKey))))))}
 * 
*

* The validation step is skipped when a license key is just viewed. * Encryption is done via JCA with a configurable password based encryption * algorithm. * Authentication is done via JCA with a configurable key store type and * signature algorithm. * Encoding is done with {@link java.beans.XMLEncoder} for simple, * schema-less, yet resilient long term archival. *

* TrueLicense 2 retains full compatibility with TrueLicense 1 (V1) format * license keys plus defines a new V2 format for enhanced encryption and * compression. * Applications select the class * {@link net.java.truelicense.core.V1LicenseManagementContext} or * {@link net.java.truelicense.core.V2XmlLicenseManagementContext} as * their starting point for configuring a license vendor or consumer manager. * These classes can get subclassed to customize special aspects, such as * performing additional license validation steps, providing an authoritative * clock et al. * However, TrueLicense 2 has been designed so that typical applications don't * need to subclass or implement any class or interface of its API. *

* For security, passwords are represented as an instance of the * {@link net.java.truelicense.obfuscate.ObfuscatedString} class. * Other security critical string (algorithms, paths, etc.) are annotatable * with {@literal @}{@link net.java.truelicense.obfuscate.Obfuscate} and * processible with the TrueLicense Maven Plugin for simple, reliable * obfuscation of constant string values in the byte code for license * applications. *

* Warning: * To protect against reverse engineering and modification of your * application, it is strictly necessary to generally process all byte * code which is comprised in your deployment unit with a tool for byte code * obfuscation. * TrueLicense does not provide general byte code obfuscation because there * exist good quality third party tools, e.g. ProGuard. * * @author Christian Schlichtherle */ @javax.annotation.ParametersAreNonnullByDefault @javax.annotation.Nonnull package net.java.truelicense.core;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy