#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