Merge branch 'brodes/cipher_operation' of https://github.com/nicolaswill/codeql into brodes/cipher_operation

This commit is contained in:
Nicolas Will
2025-03-22 08:01:06 +01:00

View File

@@ -1104,6 +1104,7 @@ module CryptographyBase<LocationSig Location, InputSig<Location> Input> {
TDecryptionMode() or
TWrapMode() or
TUnwrapMode() or
TSignatureMode() or
TUnknownCipherOperationMode()
abstract class CipherOperationSubtype extends TCipherOperationSubtype {
@@ -1126,6 +1127,10 @@ module CryptographyBase<LocationSig Location, InputSig<Location> Input> {
override string toString() { result = "Unwrap" }
}
class SignatureSubtype extends CipherOperationSubtype, TSignatureMode {
override string toString() { result = "Sign" }
}
class UnknownCipherOperationSubtype extends CipherOperationSubtype, TUnknownCipherOperationMode {
override string toString() { result = "Unknown" }
}