/xxtea-nim

XXTEA for encryption algorithm library Nim.

Primary LanguageHTMLMIT LicenseMIT

XXTEA for Nim

XXTEA logo

Build Status

Introduction

XXTEA is a fast and secure encryption algorithm. This is a XXTEA library for Nim.

It is different from the original XXTEA encryption algorithm. It encrypts and decrypts raw binary data instead of 32bit integer array, and the key is also the raw binary data.

Installation

nimble install https://github.com/xxtea/xxtea-nim.git

Usage

import xxtea

const text = "Hello World! 你好,**!"
const key = "1234567890"
const encrypt_data = xxtea.encrypt(text, key)
const decrypt_data = xxtea.decrypt(encrypt_data, key)
if text == decrypt_data:
    echo "success!"
else:
    echo "fail!"