libcoap 4.3.4-develop-749e16f
coap_hashkey.c File Reference

Hashkey functions. More...

+ Include dependency graph for coap_hashkey.c:

Go to the source code of this file.

Functions

void coap_hash_impl (const unsigned char *s, size_t len, coap_key_t h)
 Calculates a fast hash over the given string s of length len and stores the result into h. More...
 

Detailed Description

Hashkey functions.

Definition in file coap_hashkey.c.

Function Documentation

◆ coap_hash_impl()

void coap_hash_impl ( const unsigned char *  s,
size_t  len,
coap_key_t  h 
)

Calculates a fast hash over the given string s of length len and stores the result into h.

Depending on the exact implementation, this function cannot be used as one-way function to check message integrity or simlar.

Parameters
sThe string used for hash calculation.
lenThe length of s.
hThe result buffer to store the calculated hash key.

Definition at line 19 of file coap_hashkey.c.