Paul Lawrence | 707fd6c | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 1 | #include <sys/cdefs.h> |
| 2 | |
| 3 | __BEGIN_DECLS |
| 4 | |
| 5 | // General functions |
| 6 | int e4crypt_enable(const char* path); |
| 7 | int e4crypt_main(int argc, char* argv[]); |
| 8 | int e4crypt_change_password(const char* path, int crypt_type, |
| 9 | const char* password); |
| 10 | int e4crypt_crypto_complete(const char* path); |
| 11 | int e4crypt_check_passwd(const char* path, const char* password); |
| 12 | int e4crypt_get_password_type(const char* path); |
| 13 | const char* e4crypt_get_password(const char* path); |
| 14 | int e4crypt_restart(const char* path); |
| 15 | |
| 16 | __END_DECLS |