libcoap  4.2.0
coap_hashkey.c File Reference
#include "coap_hashkey.h"
+ Include dependency graph for coap_hashkey.c:

Go to the source code of this file.

Functions

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

Function Documentation

◆ coap_hash_impl()

void coap_hash_impl ( const unsigned char *  s,
unsigned int  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 12 of file coap_hashkey.c.