Current location - Quotes Website - Signature design - Cryptography ElGamal digital signature, please ask for the original program code, or help me see what is wrong in the picture. When choosing a relatively large prime number, the final output
Cryptography ElGamal digital signature, please ask for the original program code, or help me see what is wrong in the picture. When choosing a relatively large prime number, the final output

template

class TreeNode{

public:

T data;

int index;

int active;

TreeNode amp; operator=(TreeNode amp; treenode)

{

this-gt; data=treenode.data;

this-gt; index=treenode.index;

this-gt; active=treenode.active;

return *this;

}

};