private void btnVerify_Click(object sender, EventArgs e)
        {
            string signature = txtMAC.Text;
            string publicKey = txtPublicKey.Text;
            string hashValue = txtHash.Text;


            bool verify = ECDSAOperations.VerifySignature(hashValue, signature, publicKey);
        }