summaryrefslogtreecommitdiffstats
path: root/lib/crypt/crypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/crypt/crypt.h')
-rw-r--r--lib/crypt/crypt.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/crypt/crypt.h b/lib/crypt/crypt.h
new file mode 100644
index 0000000..4b242f0
--- /dev/null
+++ b/lib/crypt/crypt.h
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2018 IBM Corporation
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+#ifndef CRYPT_H
+#define CRYPT_H
+
+#include "config.h"
+
+#ifdef CRYPT_SUPPORT
+
+char *crypt_get_hash(void *ctx);
+bool crypt_check_password(const char *password);
+int crypt_set_password(void *ctx, const char *password);
+int crypt_set_password_hash(void *ctx, const char *hash);
+
+#else
+
+static inline char *crypt_get_hash(void *ctx __attribute__((unused)))
+{
+ return NULL;
+}
+static inline bool crypt_check_password(
+ const char *password __attribute__((unused)))
+{
+ return false;
+}
+static inline int crypt_set_password(void *ctx __attribute__((unused)),
+ const char *password __attribute__((unused)))
+{
+ return -1;
+}
+static inline int crypt_set_password_hash(void *ctx __attribute__((unused)),
+ const char *hash __attribute__((unused)))
+{
+ return -1;
+}
+
+#endif
+#endif /* CRYPT_H */
OpenPOWER on IntegriCloud