Add C++ compatibility
This commit is contained in:
parent
4b4161b6c8
commit
a226e06629
|
@ -6,6 +6,10 @@
|
||||||
#ifndef _HMAC_SHA256_H_
|
#ifndef _HMAC_SHA256_H_
|
||||||
#define _HMAC_SHA256_H_
|
#define _HMAC_SHA256_H_
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif // __cplusplus
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
void hmac_sha256(
|
void hmac_sha256(
|
||||||
|
@ -17,5 +21,9 @@ void hmac_sha256(
|
||||||
uint8_t* out, const unsigned outlen
|
uint8_t* out, const unsigned outlen
|
||||||
);
|
);
|
||||||
|
|
||||||
#endif
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif // __cplusplus
|
||||||
|
|
||||||
|
#endif // _HMAC_SHA256_H_
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue