From f8e6a661f1bd00fdfc2e26cf8b79a7258691268f Mon Sep 17 00:00:00 2001 From: Omar Santos Date: Tue, 15 Aug 2023 10:06:32 -0400 Subject: [PATCH] Update 08_Elliptic_Curve_Key_Pair_Generation.md --- crypto/challenges/08_Elliptic_Curve_Key_Pair_Generation.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crypto/challenges/08_Elliptic_Curve_Key_Pair_Generation.md b/crypto/challenges/08_Elliptic_Curve_Key_Pair_Generation.md index e7f7173..7f80b01 100644 --- a/crypto/challenges/08_Elliptic_Curve_Key_Pair_Generation.md +++ b/crypto/challenges/08_Elliptic_Curve_Key_Pair_Generation.md @@ -1,6 +1,3 @@ -Certainly! Here's the complete content for challenge 8, `08_Elliptic_Curve_Key_Pair_Generation.md`, including the introduction, challenge instructions, answer, and code. - -```markdown # Elliptic Curve Key Pair Generation **Level:** Intermediate @@ -85,6 +82,3 @@ Public Key: (15, 13) ``` This code defines functions to add and multiply points on an elliptic curve over a finite field. Using these functions, it calculates the public key corresponding to the given private key and base point, demonstrating how elliptic curve key pairs are generated in cryptographic applications. -``` - -This file provides a comprehensive explanation and solution for the challenge, giving students a practical example of how elliptic curve cryptography can be used to generate key pairs.