MVN

org.xxtea : xxtea-java

Maven & Gradle

Aug 12, 2015
1 usages
114 stars

XXTEA for Java · XXTEA is a fast and secure encryption algorithm. This is a XXTEA library for Java. It is different from the original XXTEA encryption algorithm. It encrypts and decrypts byte[] instead of 32bit integer array, and the key is also the byte[].

<dependency>
    <groupId>org.xxtea</groupId>
    <artifactId>xxtea-java</artifactId>
    <version>1.0.5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.xxtea : xxtea-java to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.5

All Versions

Choose a version of org.xxtea : xxtea-java to add to Maven or Gradle - All Versions:

  • Version Updated
  • xxtea-java-1.0.5

    Aug 12, 2015

How to add a dependency to Maven

Add the following org.xxtea : xxtea-java maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.xxtea</groupId>
    <artifactId>xxtea-java</artifactId>
    <version>1.0.5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.xxtea : xxtea-java gradle dependency to your build.gradle file:

implementation 'org.xxtea:xxtea-java:1.0.5'

Gradle Kotlin DSL: Add the following org.xxtea : xxtea-java gradle kotlin dependency to your build.gradle.kts file:

implementation("org.xxtea:xxtea-java:1.0.5")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.xxtea : xxtea-java sbt scala dependency to your build.sbt file:

libraryDependencies += "org.xxtea" % "xxtea-java" % "1.0.5"