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 @@ -792,6 +792,7 @@ module CryptographyBase<LocationSig Location, InputSig<Location> Input> {
792
792
TDecryptionMode ( ) or
793
793
TWrapMode ( ) or
794
794
TUnwrapMode ( ) or
795
+ TSignatureMode ( ) or
795
796
TUnknownCipherOperationMode ( )
796
797
797
798
abstract class CipherOperationSubtype extends TCipherOperationSubtype {
@@ -814,6 +815,10 @@ module CryptographyBase<LocationSig Location, InputSig<Location> Input> {
814
815
override string toString ( ) { result = "Unwrap" }
815
816
}
816
817
818
+ class SignatureSubtype extends CipherOperationSubtype , TSignatureMode {
819
+ override string toString ( ) { result = "Sign" }
820
+ }
821
+
817
822
class UnknownCipherOperationSubtype extends CipherOperationSubtype , TUnknownCipherOperationMode {
818
823
override string toString ( ) { result = "Unknown" }
819
824
}
You can’t perform that action at this time.
0 commit comments