diff options
Diffstat (limited to 'sys/linux/init_alg.go')
| -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: { |
