mirror of
https://github.com/github/codeql.git
synced 2026-04-22 23:35:14 +02:00
Merge branch 'brodes/cipher_operation' of https://github.com/nicolaswill/codeql into brodes/cipher_operation
This commit is contained in:
@@ -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" }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user