|
reSIProcate/stack
9694
|
SIP body type for holding PKCS7 Signed contents (MIME content-type application/pkcs7-signature). More...
#include <Pkcs7Contents.hxx>


Public Member Functions | |
| Pkcs7SignedContents () | |
| Pkcs7SignedContents (const Data &text) | |
| Pkcs7SignedContents (const HeaderFieldValue &hfv, const Mime &contentType) | |
| Pkcs7SignedContents (const Data &data, const Mime &contentType) | |
| Pkcs7SignedContents (const Pkcs7SignedContents &rhs) | |
| virtual | ~Pkcs7SignedContents () |
| Pkcs7SignedContents & | operator= (const Pkcs7SignedContents &rhs) |
| virtual Contents * | clone () const |
| duplicate an Pkcs7SignedContents object | |
Static Public Member Functions | |
| static const Mime & | getStaticType () |
| static bool | init () |
Static Public Attributes | |
| static const Pkcs7SignedContents | Empty |
SIP body type for holding PKCS7 Signed contents (MIME content-type application/pkcs7-signature).
Definition at line 51 of file Pkcs7Contents.hxx.
| Pkcs7SignedContents::Pkcs7SignedContents | ( | ) |
| Pkcs7SignedContents::Pkcs7SignedContents | ( | const Data & | text | ) |
Definition at line 51 of file Pkcs7Contents.cxx.
: Pkcs7Contents(txt, getStaticType()) { }
| Pkcs7SignedContents::Pkcs7SignedContents | ( | const HeaderFieldValue & | hfv, |
| const Mime & | contentType | ||
| ) |
Definition at line 68 of file Pkcs7Contents.cxx.
: Pkcs7Contents(hfv, contentsType) { }
| Pkcs7SignedContents::Pkcs7SignedContents | ( | const Pkcs7SignedContents & | rhs | ) |
Definition at line 79 of file Pkcs7Contents.cxx.
: Pkcs7Contents(rhs) { }
| Pkcs7SignedContents::~Pkcs7SignedContents | ( | ) | [virtual] |
Definition at line 88 of file Pkcs7Contents.cxx.
{
}
| Contents * Pkcs7SignedContents::clone | ( | ) | const [virtual] |
duplicate an Pkcs7SignedContents object
Reimplemented from resip::Pkcs7Contents.
Definition at line 110 of file Pkcs7Contents.cxx.
References Pkcs7SignedContents().
{
return new Pkcs7SignedContents(*this);
}

| const Mime & Pkcs7SignedContents::getStaticType | ( | ) | [static] |
Reimplemented from resip::Pkcs7Contents.
Definition at line 123 of file Pkcs7Contents.cxx.
References type.
| bool Pkcs7SignedContents::init | ( | ) | [static] |
Reimplemented from resip::Pkcs7Contents.
Definition at line 28 of file Pkcs7Contents.cxx.
{
static ContentsFactory<Pkcs7SignedContents> factory;
(void)factory;
return true;
}
| Pkcs7SignedContents& resip::Pkcs7SignedContents::operator= | ( | const Pkcs7SignedContents & | rhs | ) |
const Pkcs7SignedContents Pkcs7SignedContents::Empty [static] |
Reimplemented from resip::Pkcs7Contents.
Definition at line 54 of file Pkcs7Contents.hxx.
1.7.5.1