Skip to content

Commit 7df9d02

Browse files
fionatraheakhilnxp
authored andcommitted
doc: fix missing asymmetric crypto table
Fixes: 11e5ba7 ("doc: add crypto asymmetric feature list") Cc: [email protected] Signed-off-by: Fiona Trahe <[email protected]> Acked-by: Akhil Goyal <[email protected]>
1 parent 63774c0 commit 7df9d02

20 files changed

+105
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ doc/guides/cryptodevs/overview_feature_table.txt
77
doc/guides/cryptodevs/overview_cipher_table.txt
88
doc/guides/cryptodevs/overview_auth_table.txt
99
doc/guides/cryptodevs/overview_aead_table.txt
10+
doc/guides/cryptodevs/overview_asym_table.txt
1011
doc/guides/compressdevs/overview_feature_table.txt
1112

1213
# ignore generated ctags/cscope files

doc/guides/conf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,11 @@ def setup(app):
391391
'AEAD',
392392
'AEAD algorithms in crypto drivers',
393393
'AEAD algorithm')
394+
table_file = dirname(__file__) + '/cryptodevs/overview_asym_table.txt'
395+
generate_overview_table(table_file, 5,
396+
'Asymmetric',
397+
'Asymmetric algorithms in crypto drivers',
398+
'Asymmetric algorithm')
394399
table_file = dirname(__file__) + '/compressdevs/overview_feature_table.txt'
395400
generate_overview_table(table_file, 1,
396401
'Features',

doc/guides/cryptodevs/features/aesni_gcm.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ AES GMAC = Y
3131
AES GCM (128) = Y
3232
AES GCM (192) = Y
3333
AES GCM (256) = Y
34+
35+
;
36+
; Supported Asymmetric algorithms of the 'aesni_gcm' crypto driver.
37+
;
38+
[Asymmetric]

doc/guides/cryptodevs/features/aesni_mb.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,8 @@ AES CCM (128) = Y
5555
AES GCM (128) = Y
5656
AES GCM (192) = Y
5757
AES GCM (256) = Y
58+
59+
;
60+
; Supported Asymmetric algorithms of the 'aesni_mb' crypto driver.
61+
;
62+
[Asymmetric]

doc/guides/cryptodevs/features/armv8.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ SHA256 HMAC = Y
2626
; Supported AEAD algorithms of the 'armv8' crypto driver.
2727
;
2828
[AEAD]
29+
30+
;
31+
; Supported Asymmetric algorithms of the 'armv8' crypto driver.
32+
;
33+
[Asymmetric]

doc/guides/cryptodevs/features/caam_jr.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,8 @@ SHA512 HMAC = Y
4444
AES GCM (128) = Y
4545
AES GCM (192) = Y
4646
AES GCM (256) = Y
47+
48+
;
49+
; Supported Asymmetric algorithms of the 'dpaa2_sec' crypto driver.
50+
;
51+
[Asymmetric]

doc/guides/cryptodevs/features/ccp.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,8 @@ SHA3_512 HMAC = Y
5757
AES GCM (128) = Y
5858
AES GCM (192) = Y
5959
AES GCM (256) = Y
60+
61+
;
62+
; Supported Asymmetric algorithms of the 'ccp' crypto driver.
63+
;
64+
[Asymmetric]

doc/guides/cryptodevs/features/default.ini

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,12 @@ AES GCM (256) =
9797
AES CCM (128) =
9898
AES CCM (192) =
9999
AES CCM (256) =
100+
;
101+
; Supported Asymmetric algorithms of a default crypto driver.
102+
;
103+
[Asymmetric]
104+
RSA =
105+
DSA =
106+
Modular Exponentiation =
107+
Modular Inversion =
108+
Diffie-hellman =

doc/guides/cryptodevs/features/dpaa2_sec.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,8 @@ SHA512 HMAC = Y
4444
AES GCM (128) = Y
4545
AES GCM (192) = Y
4646
AES GCM (256) = Y
47+
48+
;
49+
; Supported Asymmetric algorithms of the 'dpaa2_sec' crypto driver.
50+
;
51+
[Asymmetric]

doc/guides/cryptodevs/features/dpaa_sec.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,8 @@ SHA512 HMAC = Y
4444
AES GCM (128) = Y
4545
AES GCM (192) = Y
4646
AES GCM (256) = Y
47+
48+
;
49+
; Supported Asymmetric algorithms of the 'dpaa_sec' crypto driver.
50+
;
51+
[Asymmetric]

0 commit comments

Comments
 (0)