blob: 3dd03a423ccc4f6a90ff80b52822fa4ce22a663a (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef BOKF_SECRET_H
#define BOKF_SECRET_H
int secret_available(void);
int secret_encrypt(const char *plain, char **out);
int secret_decrypt(const char *stored, char **out);
int secret_key_is_secret(const char *key);
#endif
|