Discuss this help topic in SecureBlackbox Forum

TElPGPClearTextVerifyingStream.OnKeyIDs

TElPGPClearTextVerifyingStream     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This event is fired to notify the application about keys that were used for signing.

Declaration

[C#]
    event TSBPGPKeyIDsEvent OnKeyIDs;
    delegate void TSBPGPKeyIDsEvent(Object Sender, Byte[][] KeyIDs);

[VB.NET]
    Event OnKeyIDs As TSBPGPKeyIDsEvent
    Delegate Sub TSBPGPKeyIDsEvent(ByVal Sender As Object, ByVal KeyIDs As Byte[][])

[Pascal]
    property OnKeyIDs : TSBPGPKeyIDsEvent;
    TSBPGPKeyIDsEvent = procedure(Sender: TObject; const KeyIDs: TSBKeyIDs) of object;
    TSBKeyIDs = array of TSBKeyID;
    TSBKeyID = array[0..7] of byte;

[C++]
    void get_OnKeyIDs(TSBPGPKeyIDsEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnKeyIDs(TSBPGPKeyIDsEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBPGPKeyIDsEvent)(void * _ObjectData, TObjectHandle Sender, const uint8_t pKeyIDs[][8], int32_t szKeyIDs);

[PHP]
    TSBPGPKeyIDsEvent|callable|NULL get_OnKeyIDs()
    void set_OnKeyIDs(TSBPGPKeyIDsEvent|callable|NULL $Value)
    callable TSBPGPKeyIDsEvent(TObject $Sender, $KeyIDs)

[Java]
    TSBPGPKeyIDsEvent getOnKeyIDs();
    void setOnKeyIDs(TSBPGPKeyIDsEvent Value);
    TSBPGPKeyIDsEvent.Callback OnKeyIDs = new TSBPGPKeyIDsEvent.Callback() {
        public void TSBPGPKeyIDsEventCallback(TObject Sender, byte[][] KeyIDs) {
            //...
        }
    }

Parameters

  • KeyIDs - list of KeyIDs
  • pKeyIDs -
  • szKeyIDs - the length of pcKeyIDs.

Description

    This event is fired by TElPGPClearTextVerifyingStream to notify the application about the keys that were used for signing.
    This event is fired in order to allow the application initialize Keyring property with the keys required for verification.

See also:     OnSignatures    

Discuss this help topic in SecureBlackbox Forum