private void btnValidar_Click(object sender, EventArgs e) { if (_signatureDocument == null) { return; } FrmSeleccionarFirma frm = new FrmSeleccionarFirma(_signatureDocument); if (frm.ShowDialog() != System.Windows.Forms.DialogResult.OK) { MessageBox.Show("You must select a signature"); return; } CadesValidator cv = new CadesValidator(); var result = cv.Validate(_signatureDocument, frm.SignerInfo); if (result.IsValid) { MessageBox.Show("Signature is valid"); } else { MessageBox.Show("Verification failed: " + result.Message); } }
private void btnValidar_Click(object sender, EventArgs e) { if (_signatureDocument == null) { return; } FrmSeleccionarFirma frm = new FrmSeleccionarFirma(_signatureDocument); if (frm.ShowDialog() != System.Windows.Forms.DialogResult.OK) { MessageBox.Show("Debe seleccionar una firma"); return; } CadesValidator cv = new CadesValidator(); var result = cv.Validate(_signatureDocument, frm.SignerInfo); if (result.IsValid) { MessageBox.Show("Firma válida"); } else { MessageBox.Show("La verificación no ha sido satisfactoria: " + result.Message); } }