Discuss this help topic in SecureBlackbox Forum

TElDKPublicKey.Save

TElDKPublicKey     See also     


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


Saves the public key to the string.

Declaration

[C#]
    bool Save(out string Data);

[VB.NET]
    Function Save(Out Data As String) As Boolean

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

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

[PHP]
    bool Save(string &$Data)

[Java]
    boolean save(TSBString arg0);

Parameters

  • Data - string which public key must be saved to

Return value

     True - on success.
     False otherwise.

Description

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

See also:     Load    

Discuss this help topic in SecureBlackbox Forum