Coverage Report

Created: 2025-07-23 06:03

/src/resiprocate/resip/stack/SecurityAttributes.cxx
Line
Count
Source (jump to first uncovered line)
1
#include "resip/stack/SecurityAttributes.hxx"
2
3
using namespace resip;
4
5
SecurityAttributes::SecurityAttributes()  :
6
   
7
0
   mIsEncrypted(false),
8
0
   mSigStatus(SignatureNone),
9
0
   mStrength(From),
10
0
   mLevel(None),
11
0
   mEncryptionPerformed(false)
12
0
{}
13
14
SecurityAttributes::~SecurityAttributes() 
15
0
{};
16
17
EncodeStream& 
18
resip::operator<<(EncodeStream& strm, const SecurityAttributes& sa)
19
0
{
20
0
   const char* strengthText[] = 
21
0
      {
22
0
         "From", "IdentityFailed", "Identity" 
23
0
      };
24
25
0
   const char* sigstatusText[] = 
26
0
      {
27
0
         "None", "Bad", "Trusted", "CA Trusted", "Untrusted", "Self-signed"
28
0
      };
29
30
0
   const char* encryptionLevelText[] = 
31
0
      {
32
0
         "None", "Sign", "Encrypt", "SignAndEncrypt"
33
0
      };
34
35
0
   strm << "SecurityAttributes: identity=" << sa.mIdentity
36
0
        << " strength=" << strengthText[sa.mStrength]
37
0
        << " encrypted=" << Data(sa.mIsEncrypted)
38
0
        << " status=" << sigstatusText[sa.mSigStatus]
39
0
        << " signer=" << sa.mSigner
40
0
        << " encryption level for outgoing message=" << encryptionLevelText[sa.mLevel]
41
0
        << " encryption performed=" << Data(sa.mEncryptionPerformed);
42
43
0
   return strm;
44
0
}
45
46
47
/* ====================================================================
48
 * The Vovida Software License, Version 1.0 
49
 * 
50
 * Copyright (c) 2000-2005 Vovida Networks, Inc.  All rights reserved.
51
 * 
52
 * Redistribution and use in source and binary forms, with or without
53
 * modification, are permitted provided that the following conditions
54
 * are met:
55
 * 
56
 * 1. Redistributions of source code must retain the above copyright
57
 *    notice, this list of conditions and the following disclaimer.
58
 * 
59
 * 2. Redistributions in binary form must reproduce the above copyright
60
 *    notice, this list of conditions and the following disclaimer in
61
 *    the documentation and/or other materials provided with the
62
 *    distribution.
63
 * 
64
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
65
 *    and "Vovida Open Communication Application Library (VOCAL)" must
66
 *    not be used to endorse or promote products derived from this
67
 *    software without prior written permission. For written
68
 *    permission, please contact vocal@vovida.org.
69
 *
70
 * 4. Products derived from this software may not be called "VOCAL", nor
71
 *    may "VOCAL" appear in their name, without prior written
72
 *    permission of Vovida Networks, Inc.
73
 * 
74
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
75
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
76
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
77
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
78
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
79
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
80
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
81
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
82
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
83
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
84
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
85
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
86
 * DAMAGE.
87
 * 
88
 * ====================================================================
89
 * 
90
 * This software consists of voluntary contributions made by Vovida
91
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
92
 * Inc.  For more information on Vovida Networks, Inc., please see
93
 * <http://www.vovida.org/>.
94
 *
95
 */