File tree 3 files changed +27
-0
lines changed
3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 3
3
#include < utility>
4
4
#include " SSLCommon.h"
5
5
#include " PointerVector.h"
6
+ #include " Asn1Codec.h"
6
7
7
8
/* *
8
9
* @file
@@ -301,6 +302,12 @@ namespace pcpp
301
302
return m_DataLen;
302
303
}
303
304
305
+ /* *
306
+ * @return The root ASN.1 record of the certificate data. All of the certificate data will be under this record.
307
+ * If the Root ASN.1 record is malformed, an exception is thrown
308
+ */
309
+ Asn1SequenceRecord* getRootAsn1Record ();
310
+
304
311
/* *
305
312
* Certificate messages usually spread on more than 1 packet. So a certificate is likely to split between 2
306
313
* packets or more. This method provides an indication whether all certificate data exists or only part of it
@@ -312,6 +319,7 @@ namespace pcpp
312
319
}
313
320
314
321
private:
322
+ std::unique_ptr<Asn1Record> m_Asn1Record;
315
323
uint8_t * m_Data;
316
324
size_t m_DataLen;
317
325
bool m_AllDataExists;
Original file line number Diff line number Diff line change @@ -1216,6 +1216,20 @@ namespace pcpp
1216
1216
return result;
1217
1217
}
1218
1218
1219
+ // --------------------------
1220
+ // SSLx509Certificate methods
1221
+ // --------------------------
1222
+
1223
+ Asn1SequenceRecord* SSLx509Certificate::getRootAsn1Record ()
1224
+ {
1225
+ if (m_Asn1Record == nullptr )
1226
+ {
1227
+ m_Asn1Record = Asn1Record::decode (m_Data, m_DataLen);
1228
+ }
1229
+
1230
+ return m_Asn1Record->castAs <Asn1SequenceRecord>();
1231
+ }
1232
+
1219
1233
// ---------------------------
1220
1234
// SSLHandshakeMessage methods
1221
1235
// ---------------------------
Original file line number Diff line number Diff line change @@ -353,13 +353,18 @@ PTF_TEST_CASE(SSLMultipleRecordParsing3Test)
353
353
PTF_ASSERT_TRUE (pos != std::string::npos);
354
354
pos = certBuffer.find (" Internal Development CA" );
355
355
PTF_ASSERT_EQUAL (pos, std::string::npos, ptr);
356
+ auto asn1Record = cert->getRootAsn1Record ();
357
+ PTF_ASSERT_NOT_NULL (asn1Record);
358
+ PTF_ASSERT_EQUAL (asn1Record->getSubRecords ().size (), 3 );
359
+
356
360
cert = certMsg->getCertificate (1 );
357
361
PTF_ASSERT_NOT_NULL (cert);
358
362
PTF_ASSERT_TRUE (cert->allDataExists ());
359
363
PTF_ASSERT_EQUAL (cert->getDataLength (), 1728 );
360
364
certBuffer = std::string (cert->getData (), cert->getData () + cert->getDataLength ());
361
365
pos = certBuffer.find (" Internal Development CA" );
362
366
PTF_ASSERT_TRUE (pos != std::string::npos);
367
+
363
368
cert = certMsg->getCertificate (2 );
364
369
PTF_ASSERT_NOT_NULL (cert);
365
370
PTF_ASSERT_TRUE (cert->allDataExists ());
You can’t perform that action at this time.
0 commit comments