Skip to content

Commit d4d0b91

Browse files
committed
dynamic: switch CryptographicOperation::Range#getBlockMode() back to being an abstract predicate
1 parent c7aaad9 commit d4d0b91

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

javascript/ql/lib/semmle/javascript/internal/ConceptsShared.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module Cryptography {
7272
* This may have no result - for example if the `CryptographicAlgorithm` used
7373
* is a stream cipher rather than a block cipher.
7474
*/
75-
BlockMode getBlockMode() { none() }
75+
abstract BlockMode getBlockMode();
7676
}
7777
}
7878

python/ql/lib/semmle/python/internal/ConceptsShared.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module Cryptography {
7272
* This may have no result - for example if the `CryptographicAlgorithm` used
7373
* is a stream cipher rather than a block cipher.
7474
*/
75-
BlockMode getBlockMode() { none() }
75+
abstract BlockMode getBlockMode();
7676
}
7777
}
7878

ruby/ql/lib/codeql/ruby/internal/ConceptsShared.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module Cryptography {
7272
* This may have no result - for example if the `CryptographicAlgorithm` used
7373
* is a stream cipher rather than a block cipher.
7474
*/
75-
BlockMode getBlockMode() { none() }
75+
abstract BlockMode getBlockMode();
7676
}
7777
}
7878

0 commit comments

Comments
 (0)