File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
java/ql/src/experimental/quantum Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import experimental.quantum.Language
7
7
class AESGCMAlgorithmNode extends Crypto:: KeyOperationAlgorithmNode {
8
8
AESGCMAlgorithmNode ( ) {
9
9
this .getAlgorithmType ( ) = Crypto:: KeyOpAlg:: TSymmetricCipher ( Crypto:: KeyOpAlg:: AES ( ) ) and
10
- this .getModeOfOperation ( ) .getModeType ( ) = Crypto:: GCM ( )
10
+ this .getModeOfOperation ( ) .getModeType ( ) = Crypto:: KeyOpAlg :: GCM ( )
11
11
}
12
12
}
13
13
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ import java
11
11
import experimental.quantum.Language
12
12
13
13
from Crypto:: KeyOperationAlgorithmNode a
14
- where a .getAlgorithmType ( ) instanceof Crypto:: KeyOpAlg:: AsymmetricCipherAlgorithm
14
+ where a .getAlgorithmType ( ) instanceof Crypto:: KeyOpAlg:: AsymmetricCipherAlgorithmType
15
15
select a , a .getAlgorithmName ( )
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ import experimental.quantum.Language
13
13
// TODO: should there be a cipher algorithm node?
14
14
from Crypto:: KeyOperationAlgorithmNode a
15
15
where
16
- a .getAlgorithmType ( ) instanceof Crypto:: KeyOpAlg:: AsymmetricCipherAlgorithm or
17
- a .getAlgorithmType ( ) instanceof Crypto:: KeyOpAlg:: SymmetricCipherAlgorithm
16
+ a .getAlgorithmType ( ) instanceof Crypto:: KeyOpAlg:: AsymmetricCipherAlgorithmType or
17
+ a .getAlgorithmType ( ) instanceof Crypto:: KeyOpAlg:: SymmetricCipherAlgorithmType
18
18
select a , a .getAlgorithmName ( )
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ import java
11
11
import experimental.quantum.Language
12
12
13
13
from Crypto:: KeyOperationAlgorithmNode a
14
- where a .getAlgorithmType ( ) instanceof Crypto:: KeyOpAlg:: SymmetricCipherAlgorithm
14
+ where a .getAlgorithmType ( ) instanceof Crypto:: KeyOpAlg:: SymmetricCipherAlgorithmType
15
15
select a , a .getAlgorithmName ( )
You can’t perform that action at this time.
0 commit comments