File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
javascript/ql/lib/semmle/javascript/internal
python/ql/lib/semmle/python/internal
ruby/ql/lib/codeql/ruby/internal Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ module Cryptography {
43
43
/** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */
44
44
DataFlow:: Node getAnInput ( ) { result = super .getAnInput ( ) }
45
45
46
+ /** DEPRECATED. This predicate has been renamed to `getAnInput`. */
47
+ deprecated final DataFlow:: Node getInput ( ) { result = super .getInput ( ) }
48
+
46
49
/**
47
50
* Gets the block mode used to perform this cryptographic operation.
48
51
* This may have no result - for example if the `CryptographicAlgorithm` used
@@ -67,6 +70,9 @@ module Cryptography {
67
70
/** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */
68
71
abstract DataFlow:: Node getAnInput ( ) ;
69
72
73
+ /** DEPRECATED. This predicate has been renamed to `getAnInput`. */
74
+ deprecated final DataFlow:: Node getInput ( ) { result = this .getAnInput ( ) }
75
+
70
76
/**
71
77
* Gets the block mode used to perform this cryptographic operation.
72
78
* This may have no result - for example if the `CryptographicAlgorithm` used
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ module Cryptography {
43
43
/** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */
44
44
DataFlow:: Node getAnInput ( ) { result = super .getAnInput ( ) }
45
45
46
+ /** DEPRECATED. This predicate has been renamed to `getAnInput`. */
47
+ deprecated final DataFlow:: Node getInput ( ) { result = super .getInput ( ) }
48
+
46
49
/**
47
50
* Gets the block mode used to perform this cryptographic operation.
48
51
* This may have no result - for example if the `CryptographicAlgorithm` used
@@ -67,6 +70,9 @@ module Cryptography {
67
70
/** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */
68
71
abstract DataFlow:: Node getAnInput ( ) ;
69
72
73
+ /** DEPRECATED. This predicate has been renamed to `getAnInput`. */
74
+ deprecated final DataFlow:: Node getInput ( ) { result = this .getAnInput ( ) }
75
+
70
76
/**
71
77
* Gets the block mode used to perform this cryptographic operation.
72
78
* This may have no result - for example if the `CryptographicAlgorithm` used
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ module Cryptography {
43
43
/** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */
44
44
DataFlow:: Node getAnInput ( ) { result = super .getAnInput ( ) }
45
45
46
+ /** DEPRECATED. This predicate has been renamed to `getAnInput`. */
47
+ deprecated final DataFlow:: Node getInput ( ) { result = super .getInput ( ) }
48
+
46
49
/**
47
50
* Gets the block mode used to perform this cryptographic operation.
48
51
* This may have no result - for example if the `CryptographicAlgorithm` used
@@ -67,6 +70,9 @@ module Cryptography {
67
70
/** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */
68
71
abstract DataFlow:: Node getAnInput ( ) ;
69
72
73
+ /** DEPRECATED. This predicate has been renamed to `getAnInput`. */
74
+ deprecated final DataFlow:: Node getInput ( ) { result = this .getAnInput ( ) }
75
+
70
76
/**
71
77
* Gets the block mode used to perform this cryptographic operation.
72
78
* This may have no result - for example if the `CryptographicAlgorithm` used
You can’t perform that action at this time.
0 commit comments