代码拉取完成,页面将自动刷新
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Read encryption information for Opal and ATA devices.
*
* Copyright (C) 2024 Intel Corporation
* Author: Blazej Kucman <blazej.kucman@intel.com>
*/
typedef enum encryption_status {
/* The drive is not currently encrypted. */
ENC_STATUS_UNENCRYPTED = 0,
/* The drive is encrypted and the data is not accessible. */
ENC_STATUS_LOCKED,
/* The drive is encrypted but the data is accessible in unencrypted form. */
ENC_STATUS_UNLOCKED
} encryption_status_t;
typedef enum encryption_ability {
ENC_ABILITY_NONE = 0,
ENC_ABILITY_OTHER,
/* Self encrypted drive */
ENC_ABILITY_SED
} encryption_ability_t;
typedef struct encryption_information {
encryption_ability_t ability;
encryption_status_t status;
} encryption_information_t;
mdadm_status_t
get_nvme_opal_encryption_information(int disk_fd, struct encryption_information *information,
const int verbose);
mdadm_status_t
get_ata_encryption_information(int disk_fd, struct encryption_information *information,
const int verbose);
const char *get_encryption_ability_string(enum encryption_ability ability);
const char *get_encryption_status_string(enum encryption_status status);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。