Discuss this help topic in SecureBlackbox Forum

TElPGPCustomSecretKey.Passphrase

TElPGPCustomSecretKey     See also     


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


Contains password for the key.

Declaration

[C#]
    string Passphrase;

[VB.NET]
    Property Passphrase As String

[Pascal]
    property Passphrase : string;

[C++]
    void get_Passphrase(std::string &OutResult);
    void set_Passphrase(const std::string &Value);

[PHP]
    string get_Passphrase()
    void set_Passphrase(string $Value)

[Java]
    String getPassphrase();
    void setPassphrase(String Value);

Description

    Use this property to specify the password, which will be used by other SecureBlackbox classes to access the key. The value of this property must be set before calling Sign() method or the methods of TElPGPReader and TElPGPWriter that use the secret key (all Sign*() and Decrypt*() methods).

To change or remove the passphrase, use ChangePassphrase() or ChangeProtection() method.

See also:     ChangePassphrase     ChangeProtection    

Discuss this help topic in SecureBlackbox Forum