Discuss this help topic in SecureBlackbox Forum

TElPGPCustomSecretKey.KeyID

TElPGPCustomSecretKey     See also     


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


Returns key identifier.

Declaration

[C#]
    byte[] KeyID();

[VB.NET]
    Function KeyID() As Byte()

[Pascal]
    function KeyID : TSBKeyID;
    TSBKeyID = array[0..7] of byte;

[C++]
    void KeyID(TSBKeyID &OutResult);

[PHP]
    TSBKeyID KeyID()

[Java]
    byte[] keyID();

Description

    This method returns 8-bytes key identifier which will be unique with a high probability. If there are more than one key with the same KeyID value use KeyFP method for identification.
    Please note that many PGP implementations display only 4 low bytes of the key id to user. However, internally they use the 8-byte key id value.

See also:     KeyFP    

Discuss this help topic in SecureBlackbox Forum