miracl/MIRACL

PFC instructions

0racle2 opened this issue · 4 comments

Where are the PFC instructions and why is it not shown in the manual?For example, pfc.pairing(P,Q). Where is the similar function description?

Thank you for your answer. I mean, is there any detailed documentation for more related operations, such as how to obtain the horizontal coordinate of a point on an elliptic curve?

As can be seen the PFC class is lightly layered over the basic miracl functions. See pairing_3.h for example. Note that all class members (of G1, G2, GT) are public. Therefore it is perfectly possible to access lower level functionality if that is desired. For example to access the (x,y) coordinates of a point.

On Thu, Jun 29, 2023 at 10:03 AM 0racle2 @.> wrote: Thank you for your answer. I mean, is there any detailed documentation for more related operations, such as how to obtain the horizontal coordinate of a point on an elliptic curve? — Reply to this email directly, view it on GitHub <#122 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAU3ZDWNR55QBJDNI4V4QK3XNVAG5ANCNFSM6AAAAAAZYDPVKY . You are receiving this because you commented.Message ID: @.>

Thank you for your reply, it has been resolved. Thanks a lot.