Discuss this help topic in SecureBlackbox Forum

TElDKPublicKey.Load

TElDKPublicKey     See also     


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


Loads the public key from the string.

Declaration

[C#]
    bool Load(string Data);

[VB.NET]
    Function Load(ByVal Data As String) As Boolean

[Pascal]
    function Load(Data: string): Boolean; virtual; abstract;

[C++]
    bool Load(const std::string &Data);

[PHP]
    bool Load(string $Data)

[Java]
    boolean load(String arg0);

Parameters

  • Data - string with public key

Return value

     True - on success.
     False otherwise.

Description

    Use this method to load the public key from the string.
    This method is abstract and is overridden in descendant classes.

See also:     Save    

Discuss this help topic in SecureBlackbox Forum