File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
shared/cryptography/codeql/cryptography Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -1104,6 +1104,7 @@ module CryptographyBase<LocationSig Location, InputSig<Location> Input> {
1104
1104
TDecryptionMode ( ) or
1105
1105
TWrapMode ( ) or
1106
1106
TUnwrapMode ( ) or
1107
+ TSignatureMode ( ) or
1107
1108
TUnknownCipherOperationMode ( )
1108
1109
1109
1110
abstract class CipherOperationSubtype extends TCipherOperationSubtype {
@@ -1126,6 +1127,10 @@ module CryptographyBase<LocationSig Location, InputSig<Location> Input> {
1126
1127
override string toString ( ) { result = "Unwrap" }
1127
1128
}
1128
1129
1130
+ class SignatureSubtype extends CipherOperationSubtype , TSignatureMode {
1131
+ override string toString ( ) { result = "Sign" }
1132
+ }
1133
+
1129
1134
class UnknownCipherOperationSubtype extends CipherOperationSubtype , TUnknownCipherOperationMode {
1130
1135
override string toString ( ) { result = "Unknown" }
1131
1136
}
You can’t perform that action at this time.
0 commit comments