else if (isVERITY(type))
r = _crypt_format_verity(cd, uuid, params);
else {
- /* FIXME: allow plugins here? */
log_err(cd, _("Unknown crypt device type %s requested.\n"), type);
r = -EINVAL;
}
#include "verity.h"
#include "internal.h"
+#define VERITY_SIGNATURE "verity\0\0"
+
#define NEW_SB 1
#ifndef NEW_SB
#include <unistd.h>
#include "config.h"
-#define VERITY_SIGNATURE "verity\0\0"
-#define VERITY_MAX_LEVELS 63
-
struct crypt_device;
struct crypt_params_verity;
#include "verity.h"
#include "internal.h"
+#define VERITY_MAX_LEVELS 63
+
static unsigned get_bits_up(size_t u)
{
unsigned i = 0;
#define PACKAGE_VERITY "veritysetup"
-static int use_superblock = 1; /* FIXME: no superblock not supported */
+static int use_superblock = 1;
static const char *hash_algorithm = NULL;
static int hash_type = 1;