我在驗證有限域GF(13)中的點是否在橢圓曲線y^2 = x^3 + x + 1上時遇到了這個問題:首先我將環路邊界設置爲i < 2,結果出來了對。 #include <stdio.h>
#include <math.h>
void main()
{
int a[13], b[13];
int j, i, m, k = 0;
for (i = 0; i < 2
我讀過How do I obtain the public key from an ECDSA private key in OpenSSL? 並且想要做同樣的事情,但是在Java中使用Bouncy Castle。我也看過Bouncy Castle ESCDA Create Public Key from Private Key但它沒有幫助。