ddth-commons-crypto
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.ddth</groupId>
<artifactId>ddth-commons-crypto</artifactId>
<version>1.1.0</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.ddth</groupId>
<artifactId>ddth-commons</artifactId>
<version>1.1.0</version>
</parent>
<artifactId>ddth-commons-crypto</artifactId>
<packaging>pom</packaging>
<name>ddth-commons-crypto</name>
<description>DDTH's Java Common Libraries and Utilities</description>
<url>https://github.com/DDTH/ddth-commons</url>
<developers>
<developer>
<id>btnguyen2k</id>
<name>Thanh Ba Nguyen</name>
<email>btnguyen2k@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.github.ddth</groupId>
<artifactId>ddth-commons-core</artifactId>
<version>1.1.0</version>
</dependency>
<!-- for PGPUtils, RSAUtils, KeyPairUtils -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${version.bouncycastle}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${version.bouncycastle}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk15on</artifactId>
<version>${version.bouncycastle}</version>
</dependency>
</dependencies>
</project>