gloox  1.0.28
Public Member Functions | List of all members
GPGEncrypted Class Reference

#include <gpgencrypted.h>

Inheritance diagram for GPGEncrypted:
Inheritance graph
[legend]

Public Member Functions

 GPGEncrypted (const std::string &encrypted)
 
 GPGEncrypted (const Tag *tag)
 
virtual ~GPGEncrypted ()
 
const std::string & encrypted () const
 
virtual const std::string & filterString () const
 
virtual StanzaExtensionnewInstance (const Tag *tag) const
 
Tagtag () const
 
virtual StanzaExtensionclone () const
 
- Public Member Functions inherited from StanzaExtension
 StanzaExtension (int type)
 
virtual ~StanzaExtension ()
 
virtual StanzaembeddedStanza () const
 
virtual TagembeddedTag () const
 
int extensionType () const
 

Detailed Description

This is an abstraction of a jabber:x:encrypted namespace element, as used in XEP-0027 (Current Jabber OpenPGP Usage).

This class does not encrypt or decrypt any stanza content. It's meant to be an abstraction of the XML representation only.

XEP version: 1.3

Author
Jakob Schröter js@ca.nosp@m.maya.nosp@m..net
Since
0.9

Definition at line 38 of file gpgencrypted.h.

Constructor & Destructor Documentation

◆ GPGEncrypted() [1/2]

GPGEncrypted ( const std::string &  encrypted)

Constructs a new object with the given encrypted message.

Parameters
encryptedThe encrypted message.

Definition at line 20 of file gpgencrypted.cpp.

◆ GPGEncrypted() [2/2]

GPGEncrypted ( const Tag tag)

Constructs an GPGEncrypted object from the given Tag. To be recognized properly, the Tag should have a name of 'x' in the jabber:x:encrypted namespace.

Parameters
tagThe Tag to parse.

Definition at line 28 of file gpgencrypted.cpp.

◆ ~GPGEncrypted()

~GPGEncrypted ( )
virtual

Virtual destructor.

Definition at line 39 of file gpgencrypted.cpp.

Member Function Documentation

◆ clone()

virtual StanzaExtension* clone ( ) const
inlinevirtual

Returns an identical copy of the current StanzaExtension.

Returns
An identical copy of the current StanzaExtension.

Implements StanzaExtension.

Definition at line 78 of file gpgencrypted.h.

◆ encrypted()

const std::string& encrypted ( ) const
inline

Returns the encrypted message.

Returns
The encrypted message.

Definition at line 63 of file gpgencrypted.h.

◆ filterString()

const std::string & filterString ( ) const
virtual

Returns an XPath expression that describes a path to child elements of a stanza that an extension handles.

Returns
The extension's filter string.

Implements StanzaExtension.

Definition at line 43 of file gpgencrypted.cpp.

◆ newInstance()

virtual StanzaExtension* newInstance ( const Tag tag) const
inlinevirtual

Returns a new Instance of the derived type. Usually, for a derived class FooExtension, the implementation of this function looks like:

StanzaExtension* FooExtension::newInstance( const Tag* tag ) const
{
return new FooExtension( tag );
}
Tag * tag() const
Returns
The derived extension's new instance.

Implements StanzaExtension.

Definition at line 69 of file gpgencrypted.h.

◆ tag()

Tag * tag ( ) const
virtual

Returns a Tag representation of the extension.

Returns
A Tag representation of the extension.

Implements StanzaExtension.

Definition at line 49 of file gpgencrypted.cpp.


The documentation for this class was generated from the following files: