|
reSIProcate/stack
9694
|
#include <SecurityAttributes.hxx>

Definition at line 21 of file SecurityAttributes.hxx.
Definition at line 29 of file SecurityAttributes.hxx.
Definition at line 27 of file SecurityAttributes.hxx.
| SecurityAttributes::SecurityAttributes | ( | ) |
Definition at line 5 of file SecurityAttributes.cxx.
: mIsEncrypted(false), mSigStatus(SignatureNone), mStrength(From), mLevel(None), mEncryptionPerformed(false) {}
| SecurityAttributes::~SecurityAttributes | ( | ) |
Definition at line 14 of file SecurityAttributes.cxx.
{};
| bool resip::SecurityAttributes::encryptionPerformed | ( | ) | const [inline] |
Definition at line 90 of file SecurityAttributes.hxx.
References mEncryptionPerformed.
{
return mEncryptionPerformed;
}
| const Data& resip::SecurityAttributes::getIdentity | ( | ) | const [inline] |
| IdentityStrength resip::SecurityAttributes::getIdentityStrength | ( | ) | const [inline] |
| OutgoingEncryptionLevel resip::SecurityAttributes::getOutgoingEncryptionLevel | ( | ) | const [inline] |
| SignatureStatus resip::SecurityAttributes::getSignatureStatus | ( | ) | const [inline] |
| const Data& resip::SecurityAttributes::getSigner | ( | ) | const [inline] |
| bool resip::SecurityAttributes::isEncrypted | ( | ) | const [inline] |
Definition at line 36 of file SecurityAttributes.hxx.
References mIsEncrypted.
{
return mIsEncrypted;
}
| void resip::SecurityAttributes::setEncrypted | ( | ) | [inline] |
Definition at line 40 of file SecurityAttributes.hxx.
References mIsEncrypted.
Referenced by extractFromPkcs7Recurse().
{
mIsEncrypted = true;
}
| void resip::SecurityAttributes::setEncryptionPerformed | ( | bool | performed | ) | [inline] |
Definition at line 95 of file SecurityAttributes.hxx.
References mEncryptionPerformed.
{
mEncryptionPerformed = performed;
}
| void resip::SecurityAttributes::setIdentity | ( | const Data & | identity | ) | [inline] |
Definition at line 50 of file SecurityAttributes.hxx.
References mIdentity.
Referenced by resip::Helper::extractFromPkcs7().
{
mIdentity = identity;
}
| void resip::SecurityAttributes::setIdentityStrength | ( | IdentityStrength | strength | ) | [inline] |
Definition at line 60 of file SecurityAttributes.hxx.
References mStrength.
{
mStrength = strength;
}
| void resip::SecurityAttributes::setOutgoingEncryptionLevel | ( | OutgoingEncryptionLevel | level | ) | [inline] |
| void resip::SecurityAttributes::setSignatureStatus | ( | SignatureStatus | status | ) | [inline] |
Definition at line 45 of file SecurityAttributes.hxx.
References mSigStatus.
{
mSigStatus = status;
}
| void resip::SecurityAttributes::setSigner | ( | const Data & | signer | ) | [inline] |
| EncodeStream& operator<< | ( | EncodeStream & | strm, |
| const SecurityAttributes & | sa | ||
| ) | [friend] |
bool resip::SecurityAttributes::mEncryptionPerformed [private] |
Definition at line 109 of file SecurityAttributes.hxx.
Referenced by encryptionPerformed(), and setEncryptionPerformed().
Data resip::SecurityAttributes::mIdentity [private] |
Definition at line 106 of file SecurityAttributes.hxx.
Referenced by getIdentity(), and setIdentity().
bool resip::SecurityAttributes::mIsEncrypted [private] |
Definition at line 103 of file SecurityAttributes.hxx.
Referenced by isEncrypted(), and setEncrypted().
Definition at line 108 of file SecurityAttributes.hxx.
Referenced by getOutgoingEncryptionLevel(), and setOutgoingEncryptionLevel().
Data resip::SecurityAttributes::mSigner [private] |
Definition at line 105 of file SecurityAttributes.hxx.
Referenced by getSigner(), and setSigner().
SignatureStatus resip::SecurityAttributes::mSigStatus [private] |
Definition at line 104 of file SecurityAttributes.hxx.
Referenced by getSignatureStatus(), and setSignatureStatus().
Definition at line 107 of file SecurityAttributes.hxx.
Referenced by getIdentityStrength(), and setIdentityStrength().
1.7.5.1