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[].

Лицензия

Лицензия

Категории

Категории

Java Языки программирования
Группа

Группа

org.xxtea
Идентификатор

Идентификатор

xxtea-java
Последняя версия

Последняя версия

1.0.5
Дата

Дата

Тип

Тип

jar
Описание

Описание

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[].
Система контроля версий

Система контроля версий

https://github.com/xxtea/xxtea-java

Скачать xxtea-java

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.xxtea/xxtea-java/ -->
<dependency>
    <groupId>org.xxtea</groupId>
    <artifactId>xxtea-java</artifactId>
    <version>1.0.5</version>
</dependency>
// https://jarcasting.com/artifacts/org.xxtea/xxtea-java/
implementation 'org.xxtea:xxtea-java:1.0.5'
// https://jarcasting.com/artifacts/org.xxtea/xxtea-java/
implementation ("org.xxtea:xxtea-java:1.0.5")
'org.xxtea:xxtea-java:jar:1.0.5'
<dependency org="org.xxtea" name="xxtea-java" rev="1.0.5">
  <artifact name="xxtea-java" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.xxtea', module='xxtea-java', version='1.0.5')
)
libraryDependencies += "org.xxtea" % "xxtea-java" % "1.0.5"
[org.xxtea/xxtea-java "1.0.5"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

XXTEA for Java

XXTEA logo

Join the chat at https://gitter.im/xxtea/xxtea-java Maven Central GitHub release License

Introduction

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[].

In addition to providing the API of byte[] encryption and decryption, it also provides some methods to handle string and Base64 encode.

Usage

package org.xxtea.test;

import org.xxtea.XXTEA;

public class Main {
    public static void main(String[] args) {
        String str = "Hello World! 你好,中国!";
        String key = "1234567890";
        byte[] encrypt_data = XXTEA.encrypt(str, key);
        String decrypt_data = XXTEA.decryptToString(encrypt_data, key);
        assert(str.equals(decrypt_data));
    }
}
org.xxtea

xxtea

XXTEA encryption arithmetic library

Версии библиотеки

Версия
1.0.5