tequel-rs 1.2.1

A high-performance, Dual-Wide SIMD cryptographic engine and hash function, built in pure Rust for modern x86_64 architectures.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "tequel.h"
#include <stdio.h>

int main() {

    uint8_t hash[48];
    char* msg = "Tequel in C";
    
    tequel_hash_raw((uint8_t*)msg, 20, hash);
    
    if (isv_tequel_hash_raw(hash, (uint8_t*)msg, 20)) {
        printf("Tequel: Validate with success in C!\n");
    }
    
    return 0;

}