Merge pull request #790 from libtom/fix-latex-tables

Fix latex tables
This commit is contained in:
Steffen Jaeckel 2026-08-03 11:38:00 +02:00 committed by GitHub
commit dc77d926dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 21 additions and 0 deletions

View file

@ -24,6 +24,8 @@ function run_gcc() {
make -j$(nproc) latex-tables V=0
./latex-tables
echo "verify docs..."
while read -r line; do
grep -q -e "$line" doc/crypt.tex || { echo "Failed to find \"$line\" in doc/crypt.tex"; exit 1; }

View file

@ -9,6 +9,7 @@ static const struct {
} cipher_name_map[] = {
{ "", "none" },
{ "aes", "AES" },
{ "aria", "ARIA" },
{ "blowfish", "Blowfish" },
{ "c20p1305", "ChaCha20Poly1305" },
{ "camellia", "Camellia" },

View file

@ -8336,6 +8336,24 @@ When dealing with PEM formatted private keys the following encryption algorithms
\hline \texttt{AES-128-OFB} & AES & 128 & OFB \\
\hline \texttt{AES-192-OFB} & AES & 192 & OFB \\
\hline \texttt{AES-256-OFB} & AES & 256 & OFB \\
\hline \texttt{ARIA-128-CBC} & ARIA & 128 & CBC \\
\hline \texttt{ARIA-192-CBC} & ARIA & 192 & CBC \\
\hline \texttt{ARIA-256-CBC} & ARIA & 256 & CBC \\
\hline \texttt{ARIA-128-CFB} & ARIA & 128 & CFB \\
\hline \texttt{ARIA-192-CFB} & ARIA & 192 & CFB \\
\hline \texttt{ARIA-256-CFB} & ARIA & 256 & CFB \\
\hline \texttt{ARIA-128-CFB1} & ARIA & 128 & CFB1 \\
\hline \texttt{ARIA-192-CFB1} & ARIA & 192 & CFB1 \\
\hline \texttt{ARIA-256-CFB1} & ARIA & 256 & CFB1 \\
\hline \texttt{ARIA-128-CFB8} & ARIA & 128 & CFB8 \\
\hline \texttt{ARIA-192-CFB8} & ARIA & 192 & CFB8 \\
\hline \texttt{ARIA-256-CFB8} & ARIA & 256 & CFB8 \\
\hline \texttt{ARIA-128-CTR} & ARIA & 128 & CTR \\
\hline \texttt{ARIA-192-CTR} & ARIA & 192 & CTR \\
\hline \texttt{ARIA-256-CTR} & ARIA & 256 & CTR \\
\hline \texttt{ARIA-128-OFB} & ARIA & 128 & OFB \\
\hline \texttt{ARIA-192-OFB} & ARIA & 192 & OFB \\
\hline \texttt{ARIA-256-OFB} & ARIA & 256 & OFB \\
\hline \texttt{BF-CBC} & Blowfish & 128 & CBC \\
\hline \texttt{BF-CFB} & Blowfish & 128 & CFB \\
\hline \texttt{BF-OFB} & Blowfish & 128 & OFB \\