private void btnCoFirmar_Click(object sender, EventArgs e) { _firmaXades.PolicyIdentifier = txtIdentificadorPolitica.Text; _firmaXades.PolicyHash = txtHashPolitica.Text; _firmaXades.PolicyUri = txtURIPolitica.Text; _firmaXades.CoSign(_firmaXades.SelectCertificate()); MessageBox.Show("Firma completada correctamente.", "Test firma XADES", MessageBoxButtons.OK, MessageBoxIcon.Information); }
private void btnCoFirmar_Click(object sender, EventArgs e) { EstablecerPolitica(); SignMethod tipoMetodoFirma = ObtenerAlgoritmo(); _firmaXades.CoSign(_firmaXades.SelectCertificate(), tipoMetodoFirma); MessageBox.Show("Firma completada correctamente.", "Test firma XADES", MessageBoxButtons.OK, MessageBoxIcon.Information); }