-
Notifications
You must be signed in to change notification settings - Fork 15
/
elgamaltest.py
executable file
·71 lines (62 loc) · 2.31 KB
/
elgamaltest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/python3
#
# toyecc - A small Elliptic Curve Cryptography Demonstration.
# Copyright (C) 2011-2022 Johannes Bauer
#
# This file is part of toyecc.
#
# toyecc is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; this program is ONLY licensed under
# version 3 of the License, later versions are explicitly excluded.
#
# toyecc is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with toyecc; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Johannes Bauer <[email protected]>
#
import os
from toyecc import getcurvebyname, ECPrivateKey
curve = getcurvebyname("secp521r1")
def msg_to_point(curve, msg, msg_width_bits):
int_message = int.from_bytes(msg, byteorder = "little")
for i in range(100):
try_message = int_message | (i << msg_width_bits)
point = curve.getpointwithx(try_message)
if point:
point = point[0]
break
return (i + 1, point)
def elgamal_encrypt(recipient_pubkey, msg, msg_width_bits):
k = ECPrivateKey.generate(curve)
C1 = k.pubkey.point
C2 = k.scalar * recipient_pubkey.point
(trials, P_m) = msg_to_point(curve, msg, msg_width_bits = msg_width_bits)
ciphertext = (C1, C2 + P_m)
return ciphertext
def elgamal_decrypt(recipient_privkey, ciphertext, msg_width_bits):
(C1, C2) = ciphertext
Cp = C1 * recipient_privkey.scalar
P_m = C2 + (-Cp)
int_message = int(P_m.x) & ((1 << msg_width_bits) - 1)
msg = int.to_bytes(int_message, byteorder = "little", length = (msg_width_bits + 7) // 8)
return msg
privkey = ECPrivateKey.generate(curve)
pubkey = privkey.pubkey
message = b"foobar"
print("Message:", message)
ciphertext = elgamal_encrypt(pubkey, message, msg_width_bits = 256)
print("Ciphertext:")
print(" C1 =", ciphertext[0])
print(" C2 =", ciphertext[1])
plaintext = elgamal_decrypt(privkey, ciphertext, msg_width_bits = 256)
print("Plaintext:", plaintext)
#for i in range(10000):
# msg = os.urandom(8)
# ciphertext = elgamal_encrypt(pubkey, msg, msg_width_bits = 256)