Discuss this help topic in SecureBlackbox Forum

TElPGPReader.Passphrase

TElPGPReader     See also     


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


Specifies the password for file decryption

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

    This property specifies the password that will be tried to use when decrypting the file, which was previously encrypted using symmetric algorithm (not with a public key). If Passphrase value is empty string, the OnPassphrase event will be fired. Otherwise this event will not be fired.

See also:     OnPassphrase     DecryptingKeys     KeyPassphrase     OutputStream     VerifyingKeys    

Discuss this help topic in SecureBlackbox Forum