diff options
| author | Taras Madan <tarasmadan@google.com> | 2023-02-22 16:09:15 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2023-02-24 12:47:23 +0100 |
| commit | 26be8df8135ecb59e8034967927aa18c26117a3a (patch) | |
| tree | 9d57a23cc7a370192bae44f7af6c6131fd7a1e6d /sys/linux | |
| parent | 4c742139504eff0ac045069d3729ae52f2da5138 (diff) | |
all: tools/syz-env make generate result
Diffstat (limited to 'sys/linux')
| -rw-r--r-- | sys/linux/init_alg.go | 6 |
1 files changed, 4 insertions, 2 deletions
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: { |
