Discuss this help topic in SecureBlackbox Forum

TElSSHPGPKey.Import

TElSSHPGPKey     See also     


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


This method imports PGP keys.

Declaration

[C#]
    void Import(TElPGPPublicKey PubKey);
    void Import(TElPGPSecretKey SecKey);
    void Import(TElX509Certificate Certificate);

[VB.NET]
    Sub Import(ByVal PubKey As TElPGPPublicKey)
    Sub Import(ByVal SecKey As TElPGPSecretKey)
    Sub Import(ByVal Certificate As TElX509Certificate)

[Pascal]
    procedure Import(PubKey: TElPGPPublicKey); overload;
    procedure Import(SecKey: TElPGPSecretKey); overload;

[C++]
    void Import(TElPGPPublicKey &PubKey);
    void Import(TElPGPPublicKey *PubKey);
    void Import(TElPGPSecretKey &SecKey);
    void Import(TElPGPSecretKey *SecKey);

[PHP]
    void Import(TElPGPPublicKey $PubKey)
    void Import(TElPGPSecretKey $SecKey)
    void Import(TElX509Certificate $Certificate)

[Java]
    void import(TElPGPSecretKey SecKey);
    void import(TElPGPPublicKey PubKey);

Parameters

  • PubKey - public part of the key
  • SecKey - secret part of the key
  • Certificate - ...

Description

    Use this method to import public or secret part of the PGP key.

See also:     PGPPublicKey     PGPSecretKey    

Discuss this help topic in SecureBlackbox Forum