Skip to content

xxtea/xxtea-nim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!"

About

XXTEA for encryption algorithm library Nim.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published