home / secrets / src / core / crypt.h

crypt.h



//
//  crypt.h
//  secrets
//
//  Created by Anders on 08/07/2020.
//

#ifndef crypt_h
#define crypt_h

#include "secret.h"

Secret* crypt_create_alloc(char *password, char *message);
bool crypt_print(FILE* dest, char *password, const Secret* secret);
void crypt_wipe(char *text);

#endif /* crypt_h */