Discuss this help topic in SecureBlackbox Forum

TElSAMLEncryptionHandler.OnXMLDecryptorPrepared

TElSAMLEncryptionHandler     See also     


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


This event is fired when a decryptor object has been initialized.

Declaration

[C#]
    event TSBSAMLXMLDecryptorPreparedEvent OnXMLDecryptorPrepared;
    delegate void TSBSAMLXMLDecryptorPreparedEvent(Object Sender, ref TElXMLDecryptor Decryptor);

[VB.NET]
    Event OnXMLDecryptorPrepared As TSBSAMLXMLDecryptorPreparedEvent
    Delegate Sub TSBSAMLXMLDecryptorPreparedEvent(ByVal Sender As Object, ByRef Decryptor As TElXMLDecryptor)

[Pascal]
    property OnXMLDecryptorPrepared : TSBSAMLXMLDecryptorPreparedEvent;
    TSBSAMLXMLDecryptorPreparedEvent = procedure(Sender : TObject; var Decryptor : TElXMLDecryptor) of object;

[C++]
    void get_OnXMLDecryptorPrepared(TSBSAMLXMLDecryptorPreparedEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnXMLDecryptorPrepared(TSBSAMLXMLDecryptorPreparedEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSAMLXMLDecryptorPreparedEvent)(void * _ObjectData, TObjectHandle Sender, TElXMLDecryptorHandle &Decryptor);

[PHP]
    TSBSAMLXMLDecryptorPreparedEvent|callable|NULL get_OnXMLDecryptorPrepared()
    void set_OnXMLDecryptorPrepared(TSBSAMLXMLDecryptorPreparedEvent|callable|NULL $Value)
    callable TSBSAMLXMLDecryptorPreparedEvent(TObject $Sender, TElXMLDecryptor &$Decryptor)

[Java]
    TSBSAMLXMLDecryptorPreparedEvent getOnXMLDecryptorPrepared();
    void setOnXMLDecryptorPrepared(TSBSAMLXMLDecryptorPreparedEvent Value);
    TSBSAMLXMLDecryptorPreparedEvent.Callback OnXMLDecryptorPrepared = new TSBSAMLXMLDecryptorPreparedEvent.Callback() {
        public TElXMLDecryptor TSBSAMLXMLDecryptorPreparedEventCallback(TObject Sender, TElXMLDecryptor Decryptor) {
            //...
        }
    }

Parameters

  • Decryptor - the object which will handle decryption.

Description

This event is fired by TElSAMLEncryptionHandler just before decrypting the data and allows to change the parameters of the decryptor object.

See also:     OnXMLEncryptorPrepared    

Discuss this help topic in SecureBlackbox Forum