SecureBlackbox 2020 .NET Edition

Questions / Feedback?

StoreCRL Event

This event is fired when a CRL should be stored along with a signature.

Syntax

public event OnStoreCRLHandler OnStoreCRL;

public delegate void OnStoreCRLHandler(object sender, AsicverifierStoreCRLEventArgs e);

public class AsicverifierStoreCRLEventArgs : EventArgs {
  public byte[] CRL { get; }
  public string URI { get; set; }
}
Public Event OnStoreCRL As OnStoreCRLHandler

Public Delegate Sub OnStoreCRLHandler(sender As Object, e As AsicverifierStoreCRLEventArgs)

Public Class AsicverifierStoreCRLEventArgs Inherits EventArgs
  Public ReadOnly Property CRL As Byte()
  Public Property URI As String
End Class

Remarks

This event could occur if you are verifying XAdES-C form or higher. CRL parameter contains a CRL in binary form that should be stored along with a signature, and the user should provide the URI of the stored CRL.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 .NET Edition - Version 20.0 [Build 8165]