mirror of
https://github.com/github/codeql.git
synced 2026-04-24 08:15:14 +02:00
Add signature to cipher operation
This commit is contained in:
@@ -792,6 +792,7 @@ module CryptographyBase<LocationSig Location, InputSig<Location> Input> {
|
||||
TDecryptionMode() or
|
||||
TWrapMode() or
|
||||
TUnwrapMode() or
|
||||
TSignatureMode() or
|
||||
TUnknownCipherOperationMode()
|
||||
|
||||
abstract class CipherOperationSubtype extends TCipherOperationSubtype {
|
||||
@@ -814,6 +815,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" }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user