Crypto: Add missing cipher algorithms to JCA. Update node tests to account for missing cipher algorithms.

This commit is contained in:
REDMOND\brodes
2025-10-17 13:38:47 -04:00
parent f480d90a68
commit b4ecb91c83
3 changed files with 19 additions and 3 deletions

View File

@@ -39,6 +39,7 @@ module Types {
RC5() or
SEED() or
SM4() or
SKIPJACK() or
OtherSymmetricCipherType()
newtype TAsymmetricCipherType =
@@ -118,6 +119,8 @@ module Types {
or
type = SM4() and name = "SM4" and s = Block()
or
type = SKIPJACK() and name = "Skipjack" and s = Block()
or
type = OtherSymmetricCipherType() and
name = "UnknownSymmetricCipher" and
s = OtherCipherStructureType()