Discuss this help topic in SecureBlackbox Forum

TElXMLSigner.KeyName

TElXMLSigner     See also     


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


This property contains information about the used key.

Declaration

[C#]
    string KeyName;

[VB.NET]
    Property KeyName As String

[Pascal]
    property KeyName : WideString;

[C++]
    void get_KeyName(sb_u16string &OutResult);
    void get_KeyName(std::wstring &OutResult);
    void set_KeyName(const sb_u16string &Value);
    void set_KeyName(const std::wstring &Value);

[PHP]
    string get_KeyName()
    void set_KeyName(string $Value)

[Java]
    String getKeyName();
    void setKeyName(String Value);

Description

     The KeyName element contains a string value (in which white space is significant) which may be used by the signer to communicate a key identifier to the recipient. Typically, KeyName contains an identifier related to the key pair used to sign the message, but it may contain other protocol-related information that indirectly identifies a key pair. Common uses of KeyName include simple string names for keys, a key index, a distinguished name (DN), an email address, etc.

See also:     KeyData    

Discuss this help topic in SecureBlackbox Forum