cryptosym
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>xyz.ronella.crypto</groupId> <artifactId>cryptosym</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>xyz.ronella.crypto</groupId> <artifactId>cryptosym</artifactId> <version>1.0.1</version> <name>CryptoSym</name> <description>A lightweight symmetric encryption implementation.</description> <url>https://github.com/rcw3bb/cryptosym</url> <licenses> <license> <name>MIT License</name> <url>https://github.com/rcw3bb/cryptosym/blob/master/LICENSE.md</url> </license> </licenses> <developers> <developer> <id>rcw3bb</id> <name>Ronaldo Webb</name> <email>ronaldo.c.webb@gmail.com</email> </developer> </developers> <scm> <url>https://github.com/rcw3bb/cryptosym.git</url> </scm> <properties> <inceptionYear>2023</inceptionYear> </properties> <dependencies> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.22.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.22.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>2.22.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>xyz.ronella.casual</groupId> <artifactId>trivial-chunk</artifactId> <version>2.16.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>xyz.ronella.logging</groupId> <artifactId>logger-plus</artifactId> <version>1.2.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>