Question: from tinyec import registry curve = registry.get _ curve ( ' secp 1 9 2 r 1 ' ) print ( ' curve: ' ,

from tinyec import registry
curve = registry.get_curve('secp192r1')
print('curve:', curve)
for k in range(0,10):
p = k * curve.g
print(f"{k}* G =({p.x},{p.y})")
print("Cofactor =", curve.field.h)
print('Cyclic group order =', curve.field.n)
nG = curve.field.n * curve.g
print(f"n * G =({nG.x},{nG.y})")
a. Is the secp192r1 curve considered to be secure?
b. What bit length for the curve prime number parameter p is recommended in
this section?
c. Which curve on this webpage is referred to as the bitcoin curve?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!