Module Name: src Committed By: prlw1 Date: Thu Jun 3 15:40:27 UTC 2021
Modified Files: src/sbin/cgdconfig: params.c Log Message: Make adiantum a first class citizen To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/sbin/cgdconfig/params.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sbin/cgdconfig/params.c diff -u src/sbin/cgdconfig/params.c:1.30 src/sbin/cgdconfig/params.c:1.31 --- src/sbin/cgdconfig/params.c:1.30 Sun Dec 30 12:05:48 2018 +++ src/sbin/cgdconfig/params.c Thu Jun 3 15:40:27 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: params.c,v 1.30 2018/12/30 12:05:48 mlelstv Exp $ */ +/* $NetBSD: params.c,v 1.31 2021/06/03 15:40:27 prlw1 Exp $ */ /*- * Copyright (c) 2002, 2003 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: params.c,v 1.30 2018/12/30 12:05:48 mlelstv Exp $"); +__RCSID("$NetBSD: params.c,v 1.31 2021/06/03 15:40:27 prlw1 Exp $"); #endif #include <sys/types.h> @@ -69,6 +69,7 @@ static struct crypto_defaults { char alg[32]; int keylen; } crypto_defaults[] = { + { "adiantum", 256 }, { "aes-cbc", 128 }, { "aes-xts", 256 }, { "3des-cbc", 192 },