Skip to content

Commit 2984a38

Browse files
committed
Javadoc escape chars
1 parent 2f4d33d commit 2984a38

File tree

1 file changed

+2
-2
lines changed
  • core/src/main/java/org/bouncycastle/util

1 file changed

+2
-2
lines changed

core/src/main/java/org/bouncycastle/util/GF16.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static byte mt(int p, int q)
3838
* <p>
3939
* This method multiplies two elements in GF(16) (represented as integers 0–15)
4040
* using carryless multiplication followed by reduction modulo x^4 + x + 1.
41-
* Please ensure a<=0x0F and b<=0x0F
41+
* Please ensure a &lt;= 0x0F and b &lt;= 0x0F
4242
*
4343
* @param a an element in GF(16) (only the lower 4 bits are used)
4444
* @param b an element in GF(16) (only the lower 4 bits are used)
@@ -54,7 +54,7 @@ public static byte mul(byte a, byte b)
5454
* <p>
5555
* This method multiplies two elements in GF(16) (represented as integers 0–15)
5656
* using carryless multiplication followed by reduction modulo x^4 + x + 1.
57-
* Please ensure a<=0x0F and b<=0x0F
57+
* Please ensure a &lt;= 0x0F and b &lt;= 0x0F
5858
*
5959
* @param a an element in GF(16) (only the lower 4 bits are used)
6060
* @param b an element in GF(16) (only the lower 4 bits are used)

0 commit comments

Comments
 (0)