sea18c / xxtea-c

XXTEA encryption algorithm library for C.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XXTEA for C

XXTEA logo

Introduction

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

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

git clone https://github.com/xxtea/xxtea-c.git
cmake .
make
make install

Usage

#include <stdio.h>
#include <string.h>
#include <xxtea.h>

int main() {
    const char *text = "Hello World! 你好,**!";
    const char *key = "1234567890";
    size_t len;
    unsigned char *encrypt_data = xxtea_encrypt(text, strlen(text), key, &len);
    char *decrypt_data = xxtea_decrypt(encrypt_data, len, key, &len);
    if (strncmp(text, decrypt_data, len) == 0) {
        printf("success!\n");
    }
    else {
        printf("fail!\n");
    }
    free(encrypt_data);
    free(decrypt_data);
    return 0;
}

About

XXTEA encryption algorithm library for C.

License:MIT License


Languages

Language:C 94.9%Language:CMake 5.1%