crypto
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.dihedron.crypto</groupId>
<artifactId>crypto</artifactId>
<version>0.2.0</version>
</dependency><?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.dihedron.crypto</groupId>
<artifactId>parent</artifactId>
<version>0.2.0</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>crypto</artifactId>
<packaging>jar</packaging>
<name>a. Cryptographic Support Classes</name>
<description>Set of classes to support cryptography, including smart card detection, encryption, decription and signing.</description>
<build>
<plugins>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>sign</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keystore>${keystore.file}</keystore>
<storetype>${keystore.type}</storetype>
<alias>${keystore.alias}</alias>
<storepass>${keystore.password}</storepass>
<keypass>${key.password}</keypass>
<sigfile>dihedron</sigfile>
<signedjar>${project.build.directory}/signed/${project.build.finalName}.jar</signedjar>
<verify>true</verify>
</configuration>
</plugin>
-->
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.dihedron.commons</groupId>
<artifactId>base</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk16</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>