Home Documentation Forum Tracker Download

Module org.cumulus4j.crypto

API providing a unified way to use various cryptography algorithms.

For example, there is the Cipher which provides a generic API for symmetric and asymmetric encryption (& decryption) or there is the MACCalculator for calculating message authentication codes.

This API allows for the simple configuration of the algorithms used by your application as the CryptoRegistry binds an algorithm name (i.e. a String) to an implementation of one of the API's interfaces.

Maven

After adding the repositories documented on the Download page to your pom.xml, you can add the following dependency in order to use this module:

<dependencies>
        ...
        <dependency>
                <groupId>org.cumulus4j</groupId>
                <artifactId>org.cumulus4j.crypto</artifactId>
        </dependency>
        ...
</dependencies>

The above dependency does not (and should not!) declare a version. Instead, it is recommended that you add the following to your dependency-management:

<dependencyManagement>
        <dependencies>
                ...
                <dependency>
                        <groupId>org.cumulus4j</groupId>
                        <artifactId>org.cumulus4j.parent</artifactId>
                        <type>pom</type>
                        <version>1.2.0-SNAPSHOT</version>
                        <scope>import</scope>
                </dependency>
                ...
        </dependencies>
</dependencyManagement>

Deployment location

The module-location-matrix shows where this module needs to be deployed.

Documentation
About
Project Documentation
Babel
Releases