Skip to content

Commit df0f9ee

Browse files
Fixed a few typos
1 parent cfe74b5 commit df0f9ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

java/ql/src/experimental/Security/CWE/CWE-1204/StaticInitializationVector.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
A cipher needs an initialization vector (IV) when it is used in certain modes
77
such as CBC or GCM. Under the same secret key, IVs should be unique and ideally unpredictable.
88
Given a secret key, if the same IV is used for encryption, the same plaintexts result in the same ciphertexts.
9-
This lets an attacker learn if the same data pieces are transfered or stored,
9+
This lets an attacker learn if the same data pieces are transferred or stored,
1010
or this can help the attacker run a dictionary attack.
1111
</p>
1212
</overview>

java/ql/src/experimental/Security/CWE/CWE-1204/StaticInitializationVector.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* therefore they should be unique and ideally unpredictable.
66
* Otherwise, the same plaintexts result in same ciphertexts under a given secret key.
77
* If a static IV is used for encryption, this lets an attacker learn
8-
* if the same data pieces are transfered or stored,
8+
* if the same data pieces are transferred or stored,
99
* or this can help the attacker run a dictionary attack.
1010
* @kind path-problem
1111
* @problem.severity warning

0 commit comments

Comments
 (0)