git: 38044feb6e - main - handbook/disks: Change geli algo refs to match current offerings

From: Danilo G. Baio <dbaio_at_FreeBSD.org>
Date: Sat, 24 Feb 2024 17:41:17 UTC
The branch main has been updated by dbaio:

URL: https://cgit.FreeBSD.org/doc/commit/?id=38044feb6ef81364a7fe0294ae08cd2b6b44301b

commit 38044feb6ef81364a7fe0294ae08cd2b6b44301b
Author:     Garrett Boone <freebsd@gbtechlab.com>
AuthorDate: 2023-09-21 13:48:35 +0000
Commit:     Danilo G. Baio <dbaio@FreeBSD.org>
CommitDate: 2024-02-24 17:33:23 +0000

    handbook/disks: Change geli algo refs to match current offerings
    
    Pull Request:   https://github.com/freebsd/freebsd-doc/pull/258/
    Co-authored-by: Graham Perrin <grahamperrin@gmail.com>
---
 documentation/content/en/books/handbook/disks/_index.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/documentation/content/en/books/handbook/disks/_index.adoc b/documentation/content/en/books/handbook/disks/_index.adoc
index 4b24cf01b0..b452036936 100644
--- a/documentation/content/en/books/handbook/disks/_index.adoc
+++ b/documentation/content/en/books/handbook/disks/_index.adoc
@@ -1970,7 +1970,7 @@ This control utility adds some features and uses a different scheme for doing cr
 It provides the following features:
 
 * Utilizes the man:crypto[9] framework and automatically uses cryptographic hardware when it is available.
-* Supports multiple cryptographic algorithms such as AES, Blowfish, and 3DES.
+* Supports multiple cryptographic algorithms such as AES-XTS, AES-CBC, and Camellia-CBCAES.
 * Allows the root partition to be encrypted. The passphrase used to access the encrypted root partition will be requested during system boot.
 * Allows the use of two independent keys.
 * It is fast as it performs simple sector-to-sector encryption.
@@ -2165,12 +2165,12 @@ The size of the blocks data is broken into before it is encrypted.
 Larger sector sizes increase performance at the cost of higher storage overhead.
 The recommended size is 4096 bytes.
 
-This example configures an encrypted swap partition using the Blowfish algorithm with a key length of 128 bits and a sectorsize of 4 kilobytes:
+This example configures an encrypted swap partition using the AES-XTS algorithm with a key length of 128 bits and a sectorsize of 4 kilobytes:
 
 [.programlisting]
 ....
 # Device		Mountpoint	FStype	Options				Dump	Pass#
-/dev/ada0s1b.eli	none		swap	sw,ealgo=blowfish,keylen=128,sectorsize=4096	0	0
+/dev/ada0s1b.eli	none		swap	sw,ealgo=AES-XTS,keylen=128,sectorsize=4096	0	0
 ....
 
 === Encrypted Swap Verification