ksw4j-crypto-bouncycastle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.John-Smith-Dav</groupId> <artifactId>ksw4j-crypto-bouncycastle</artifactId> <version>1.0.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>io.github.John-Smith-Dav</groupId> <artifactId>ksw4j-crypto-parent</artifactId> <version>1.0.0.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>ksw4j-crypto-bouncycastle</artifactId> <name>ksw4j :: crypto :: bouncycastle</name> <description>ksw4j crypto implementation using BouncyCastle.</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ksw4j-address-codec</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ksw4j-binary-codec</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ksw4j-crypto-core</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ksw4j-keypairs</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ksw4j-model</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15to18</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> </project>