mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
13 lines
174 B
C
13 lines
174 B
C
#ifndef __ZEROIZE_H__
|
|
#define __ZEROIZE_H__
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define ZEROIZE_STACK_SIZE 2048
|
|
|
|
void zeroize(unsigned char* b, size_t len);
|
|
|
|
void zeroize_stack();
|
|
|
|
#endif
|