15 lines
444 B
Vala
15 lines
444 B
Vala
|
namespace Xmpp.Xep.ExplicitEncryption {
|
||
|
public const string NS_URI = "urn:xmpp:eme:0";
|
||
|
|
||
|
public static void add_encryption_tag_to_message(MessageStanza message, string ns, string? name = null) {
|
||
|
StanzaNode encryption = new StanzaNode.build("encryption", NS_URI).add_self_xmlns()
|
||
|
.put_attribute("namespace", ns);
|
||
|
|
||
|
if(name != null)
|
||
|
encryption.put_attribute("name", name);
|
||
|
|
||
|
message.stanza.put_node(encryption);
|
||
|
}
|
||
|
|
||
|
}
|