Discuss this help topic in SecureBlackbox Forum

TElPGPSecretKey.RemoveSubkey

TElPGPSecretKey     See also     


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


Removes one of subkeys.

Declaration

[C#]
    bool RemoveSubkey(int Index);
    bool RemoveSubkey(TElPGPSecretSubkey Subkey);

[VB.NET]
    Function RemoveSubkey(ByVal Index As Integer) As Boolean
    Function RemoveSubkey(ByVal Subkey As TElPGPSecretSubkey) As Boolean

[Pascal]
    procedure RemoveSubkey (Index : integer);
    procedure RemoveSubkey (Subkey : TElPGPSecretSubkey);

[C++]
    bool RemoveSubkey(int32_t Index);
    bool RemoveSubkey(TElPGPSecretSubkey &Subkey);
    bool RemoveSubkey(TElPGPSecretSubkey *Subkey);

[PHP]
    bool RemoveSubkey(integer $Index)
    bool RemoveSubkey(TElPGPSecretSubkey $Subkey)

[Java]
    boolean removeSubkey(TElPGPSecretSubkey Subkey);
    boolean removeSubkey(int Index);

Parameters

  • Index - index of subkey to be deleted from the list.
  • Subkey - subkey to be removed.

Description

    Use this method when you want to remove one of secret key subkeys.

See also:     AddSubkey    

Discuss this help topic in SecureBlackbox Forum