You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ecc = newEasyECC('K256');
$alice_sk = $ecc -> generatePrivateKey();
$alice_pk = $alice_sk -> getPublicKey() -> toString();
$pk = bin2hex($alice_pk);
$sign_dat = $ecc -> sign($data, $alice_sk, false);//I would like to know if you have a way to encode this place as sha256?
Because I observed the project and found the sign method in EasyECC.php:
Because I observed the project and found the sign method in EasyECC.php:
It seems to be fixedly designated as sha384
The text was updated successfully, but these errors were encountered: