Skip to main content
. 2022 Dec 10;22(24):9670. doi: 10.3390/s22249670
Algorithm 2: The process of the EdDSA signature between role A and role B.
fuction Sign(String r,String s,String M,String Q){  R=r×G;  k=H(R,M,Q);  S=(r+k×s);  return(R,S);}