File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
java/ql/lib/experimental/quantum Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1243,15 +1243,15 @@ module JCAModel {
1243
1243
exists ( hash_name_to_type_known ( this .getRawHashAlgorithmName ( ) , result ) )
1244
1244
}
1245
1245
1246
- override string getRawMACAlgorithmName ( ) {
1246
+ override string getRawMacAlgorithmName ( ) {
1247
1247
result = super .getRawKDFAlgorithmName ( ) .splitAt ( "PBKDF2With" , 1 )
1248
1248
}
1249
1249
1250
1250
override string getRawHashAlgorithmName ( ) {
1251
1251
result = super .getRawKDFAlgorithmName ( ) .splitAt ( "WithHmac" , 1 )
1252
1252
}
1253
1253
1254
- override Crypto:: TMACType getMACType ( ) { result instanceof Crypto:: THMAC }
1254
+ override Crypto:: TMACType getMacType ( ) { result instanceof Crypto:: THMAC }
1255
1255
1256
1256
override Crypto:: AlgorithmValueConsumer getHMACAlgorithmValueConsumer ( ) { result = this }
1257
1257
@@ -1487,9 +1487,9 @@ module JCAModel {
1487
1487
1488
1488
MACGetInstanceAlgorithmValueConsumer getConsumer ( ) { result = consumer }
1489
1489
1490
- override string getRawMACAlgorithmName ( ) { result = super .getValue ( ) }
1490
+ override string getRawMacAlgorithmName ( ) { result = super .getValue ( ) }
1491
1491
1492
- override Crypto:: TMACType getMACType ( ) {
1492
+ override Crypto:: TMACType getMacType ( ) {
1493
1493
if mac_name_to_mac_type_known ( _, super .getValue ( ) )
1494
1494
then mac_name_to_mac_type_known ( result , super .getValue ( ) )
1495
1495
else result instanceof Crypto:: TOtherMACType
You can’t perform that action at this time.
0 commit comments