mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Add the ccr0 device to the opencrypto tests against the NIST KAT tests.
The ccr0 device supports both AES and SHA tests. Sponsored by: Chelsio Communications
This commit is contained in:
parent
77e1943785
commit
6720b89045
1 changed files with 3 additions and 2 deletions
|
|
@ -42,9 +42,9 @@ katdir = '/usr/local/share/nist-kat'
|
|||
def katg(base, glob):
|
||||
return iglob(os.path.join(katdir, base, glob))
|
||||
|
||||
aesmodules = [ 'cryptosoft0', 'aesni0', ]
|
||||
aesmodules = [ 'cryptosoft0', 'aesni0', 'ccr0' ]
|
||||
desmodules = [ 'cryptosoft0', ]
|
||||
shamodules = [ 'cryptosoft0', ]
|
||||
shamodules = [ 'cryptosoft0', 'ccr0' ]
|
||||
|
||||
def GenTestCase(cname):
|
||||
try:
|
||||
|
|
@ -260,6 +260,7 @@ def GenTestCase(cname):
|
|||
|
||||
cryptosoft = GenTestCase('cryptosoft0')
|
||||
aesni = GenTestCase('aesni0')
|
||||
ccr = GenTestCase('ccr0')
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
|
|||
Loading…
Reference in a new issue