WIP field hashing

This commit is contained in:
Alexandre Paillier
2022-05-02 15:30:14 +02:00
parent fd31def094
commit 7e35b96ec0
5 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include <stdlib.h>
#include "field_hash.h"
#include "encode_field.h"
const uint8_t *field_hash(const void *const structs_array,
const uint8_t *const data,
const uint8_t data_length)
{
(void)structs_array;
(void)data;
(void)data_length;
encode_integer(data, data_length);
return NULL;
}