mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
632 B
632 B
0.5.0
Breaking Changes
- The
CryptographicOperationconcept has been changed to use a range pattern. This is a breaking change and existing implementations ofCryptographicOperationwill need to be updated in order to compile. These implementations can be updated by:- Extending
CryptographicOperation::Rangerather thanCryptographicOperation - Renaming the
getInput()member predicate asgetAnInput() - Implementing the
BlockMode getBlockMode()member predicate. The implementation for this can benone()if the operation is a hashing operation or an encryption operation using a stream cipher.
- Extending