From 26be8df8135ecb59e8034967927aa18c26117a3a Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Wed, 22 Feb 2023 16:09:15 +0100 Subject: all: tools/syz-env make generate result --- sys/linux/init_alg.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/linux/init_alg.go') diff --git a/sys/linux/init_alg.go b/sys/linux/init_alg.go index d0f0c4528..66d2d9a91 100644 --- a/sys/linux/init_alg.go +++ b/sys/linux/init_alg.go @@ -123,8 +123,10 @@ var allTypes = []algType{ } // Algorithms can be extracted with something along the following lines: -// cat /proc/crypto | grep -B 8 ": skcipher" | grep -B 7 "internal : no" | egrep "name |driver " | \ -// cut -b 16- | sort | uniq | awk '{printf("{\"%s\", nil},\n", $1)}' +// +// cat /proc/crypto | grep -B 8 ": skcipher" | grep -B 7 "internal : no" | egrep "name |driver " | \ +// cut -b 16- | sort | uniq | awk '{printf("{\"%s\", nil},\n", $1)}' +// // Note: the kernel needs to include all crypto configs and CPU needs to support AVX/NEON/etc. var allAlgs = map[int][]algDesc{ ALG_AEAD: { -- cgit mrf-deployment