mirror of
https://github.com/wavemotion-dave/A5200DS.git
synced 2025-04-02 10:52:40 -04:00
14 lines
358 B
C
14 lines
358 B
C
// ----------------------------------------------------------------------------
|
|
// Hash.h
|
|
// ----------------------------------------------------------------------------
|
|
#ifndef HASH_H
|
|
#define HASH_H
|
|
|
|
#include <string.h>
|
|
|
|
typedef unsigned int uint;
|
|
typedef unsigned char byte;
|
|
|
|
extern void hash_Compute(const byte* source, uint length, byte * dest);
|
|
|
|
#endif
|