Rewrite, cleanup, configurable ChaCha rounds.

This commit is contained in:
2023-11-28 23:39:38 +00:00
parent 998560f5a0
commit 236f7eedf6
7 changed files with 260 additions and 438 deletions
-8
View File
@@ -2,15 +2,7 @@ project('randquik', 'c')
executable(
'randquik',
'src/cli.c',
'src/chacha20.c',
c_args: ['-Wall', '-O3', '-march=native'],
install: true,
)
dependency('threads')
library(
'randquik-chacha20',
'src/chacha20.c',
build_by_default: true,
c_args: ['-Wall', '-O3', '-march=native'],
)