Skip to content

Commit 542a806

Browse files
Added documentation for ECC implementation
1 parent 67eadfe commit 542a806

File tree

1 file changed

+4
-1
lines changed
  • src/main/java/com/thealgorithms/ciphers

1 file changed

+4
-1
lines changed

src/main/java/com/thealgorithms/ciphers/ECC.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
* @author P.Sai Srujan Reddy on 7-Oct-24.
99
*/
1010
public class ECC {
11-
11+
/**
12+
* Elliptic Curve Cryptography (ECC) implementation
13+
* More details: https://en.wikipedia.org/wiki/Elliptic-curve_cryptography
14+
*/
1215
private BigInteger privateKey;
1316
private BigInteger publicKey;
1417
private BigInteger prime;

0 commit comments

Comments
 (0)