This file is indexed.

/usr/include/opal/asn/h235_srtp.h is in libopal-dev 3.10.2~dfsg-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
//
// h235_srtp.h
//
// Code automatically generated by asnparse.
//

#if ! H323_DISABLE_H235_SRTP

#ifndef __H235_SRTP_H
#define __H235_SRTP_H

#ifdef P_USE_PRAGMA
#pragma interface
#endif

#include <ptclib/asner.h>

//
// SrtpCryptoCapability
//

class H235_SRTP_SrtpCryptoInfo;

class H235_SRTP_SrtpCryptoCapability : public PASN_Array
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_SrtpCryptoCapability, PASN_Array);
#endif
  public:
    H235_SRTP_SrtpCryptoCapability(unsigned tag = UniversalSequence, TagClass tagClass = UniversalTagClass);

    PASN_Object * CreateObject() const;
    H235_SRTP_SrtpCryptoInfo & operator[](PINDEX i) const;
    PObject * Clone() const;
};


//
// SrtpKeys
//

class H235_SRTP_SrtpKeyParameters;

class H235_SRTP_SrtpKeys : public PASN_Array
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_SrtpKeys, PASN_Array);
#endif
  public:
    H235_SRTP_SrtpKeys(unsigned tag = UniversalSequence, TagClass tagClass = UniversalTagClass);

    PASN_Object * CreateObject() const;
    H235_SRTP_SrtpKeyParameters & operator[](PINDEX i) const;
    PObject * Clone() const;
};


//
// FecOrder
//

class H235_SRTP_FecOrder : public PASN_Sequence
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_FecOrder, PASN_Sequence);
#endif
  public:
    H235_SRTP_FecOrder(unsigned tag = UniversalSequence, TagClass tagClass = UniversalTagClass);

    enum OptionalFields {
      e_fecBeforeSrtp,
      e_fecAfterSrtp
    };

    PASN_Null m_fecBeforeSrtp;
    PASN_Null m_fecAfterSrtp;

    PINDEX GetDataLength() const;
    PBoolean Decode(PASN_Stream & strm);
    void Encode(PASN_Stream & strm) const;
#ifndef PASN_NOPRINTON
    void PrintOn(ostream & strm) const;
#endif
    Comparison Compare(const PObject & obj) const;
    PObject * Clone() const;
};


//
// SrtpKeyParameters_lifetime
//

class H235_SRTP_SrtpKeyParameters_lifetime : public PASN_Choice
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_SrtpKeyParameters_lifetime, PASN_Choice);
#endif
  public:
    H235_SRTP_SrtpKeyParameters_lifetime(unsigned tag = 0, TagClass tagClass = UniversalTagClass);

    enum Choices {
      e_powerOfTwo,
      e_specific
    };

    PBoolean CreateObject();
    PObject * Clone() const;
};


//
// SrtpKeyParameters_mki
//

class H235_SRTP_SrtpKeyParameters_mki : public PASN_Sequence
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_SrtpKeyParameters_mki, PASN_Sequence);
#endif
  public:
    H235_SRTP_SrtpKeyParameters_mki(unsigned tag = UniversalSequence, TagClass tagClass = UniversalTagClass);

    PASN_Integer m_length;
    PASN_OctetString m_value;

    PINDEX GetDataLength() const;
    PBoolean Decode(PASN_Stream & strm);
    void Encode(PASN_Stream & strm) const;
#ifndef PASN_NOPRINTON
    void PrintOn(ostream & strm) const;
#endif
    Comparison Compare(const PObject & obj) const;
    PObject * Clone() const;
};


//
// ArrayOf_GenericData
//

class GenericData;

class H235_SRTP_ArrayOf_GenericData : public PASN_Array
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_ArrayOf_GenericData, PASN_Array);
#endif
  public:
    H235_SRTP_ArrayOf_GenericData(unsigned tag = UniversalSequence, TagClass tagClass = UniversalTagClass);

    PASN_Object * CreateObject() const;
    GenericData & operator[](PINDEX i) const;
    PObject * Clone() const;
};


//
// SrtpKeyParameters
//

class H235_SRTP_SrtpKeyParameters : public PASN_Sequence
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_SrtpKeyParameters, PASN_Sequence);
#endif
  public:
    H235_SRTP_SrtpKeyParameters(unsigned tag = UniversalSequence, TagClass tagClass = UniversalTagClass);

    enum OptionalFields {
      e_lifetime,
      e_mki
    };

    PASN_OctetString m_masterKey;
    PASN_OctetString m_masterSalt;
    H235_SRTP_SrtpKeyParameters_lifetime m_lifetime;
    H235_SRTP_SrtpKeyParameters_mki m_mki;

    PINDEX GetDataLength() const;
    PBoolean Decode(PASN_Stream & strm);
    void Encode(PASN_Stream & strm) const;
#ifndef PASN_NOPRINTON
    void PrintOn(ostream & strm) const;
#endif
    Comparison Compare(const PObject & obj) const;
    PObject * Clone() const;
};


//
// SrtpSessionParameters
//

class H235_SRTP_SrtpSessionParameters : public PASN_Sequence
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_SrtpSessionParameters, PASN_Sequence);
#endif
  public:
    H235_SRTP_SrtpSessionParameters(unsigned tag = UniversalSequence, TagClass tagClass = UniversalTagClass);

    enum OptionalFields {
      e_kdr,
      e_unencryptedSrtp,
      e_unencryptedSrtcp,
      e_unauthenticatedSrtp,
      e_fecOrder,
      e_windowSizeHint,
      e_newParameter
    };

    PASN_Integer m_kdr;
    PASN_Boolean m_unencryptedSrtp;
    PASN_Boolean m_unencryptedSrtcp;
    PASN_Boolean m_unauthenticatedSrtp;
    H235_SRTP_FecOrder m_fecOrder;
    PASN_Integer m_windowSizeHint;
    H235_SRTP_ArrayOf_GenericData m_newParameter;

    PINDEX GetDataLength() const;
    PBoolean Decode(PASN_Stream & strm);
    void Encode(PASN_Stream & strm) const;
#ifndef PASN_NOPRINTON
    void PrintOn(ostream & strm) const;
#endif
    Comparison Compare(const PObject & obj) const;
    PObject * Clone() const;
};


//
// SrtpCryptoInfo
//

class H235_SRTP_SrtpCryptoInfo : public PASN_Sequence
{
#ifndef PASN_LEANANDMEAN
    PCLASSINFO(H235_SRTP_SrtpCryptoInfo, PASN_Sequence);
#endif
  public:
    H235_SRTP_SrtpCryptoInfo(unsigned tag = UniversalSequence, TagClass tagClass = UniversalTagClass);

    enum OptionalFields {
      e_cryptoSuite,
      e_sessionParams,
      e_allowMKI
    };

    PASN_ObjectId m_cryptoSuite;
    H235_SRTP_SrtpSessionParameters m_sessionParams;
    PASN_Boolean m_allowMKI;

    PINDEX GetDataLength() const;
    PBoolean Decode(PASN_Stream & strm);
    void Encode(PASN_Stream & strm) const;
#ifndef PASN_NOPRINTON
    void PrintOn(ostream & strm) const;
#endif
    Comparison Compare(const PObject & obj) const;
    PObject * Clone() const;
};


#endif // __H235_SRTP_H

#endif // if ! H323_DISABLE_H235_SRTP


// End of h235_srtp.h