Discuss this help topic in SecureBlackbox Forum

TElXMLKeyInfo.KeyName

TElXMLKeyInfo     


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


Value of the KeyName element.

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

     This KeyName property contains the value of KeyName element, which is a child of KeyInfo element.

     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.)

Discuss this help topic in SecureBlackbox Forum