Added luksbootkeyfile.conf/yaml

This commit is contained in:
abalfoort 2023-05-31 14:42:18 +02:00
parent e01b45f008
commit 06d6f217b5
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# SPDX-FileCopyrightText: no
# SPDX-License-Identifier: CC0-1.0
#
# Luksbootkeyfile configuration. A key file is created for the
# LUKS encrypted devices.
---
# Set Password-Based Key Derivation Function (PBKDF) algorithm
# for LUKS keyslot. The PBKDF can be: pbkdf2, argon2i or argon2id.
# Default: pbkdf2
luks2Hash: pbkdf2

View File

@ -0,0 +1,9 @@
# SPDX-FileCopyrightText: 2023 Arjen Balfoort <arjenbalfoort@hotmail.com>
# SPDX-License-Identifier: GPL-3.0-or-later
---
$schema: https://json-schema.org/schema#
$id: https://calamares.io/schemas/luksbootkeyfile
additionalProperties: false
type: object
properties:
luks2Hash: { type: string }