This file is indexed.

/usr/include/wolfssl/openssl/asn1.h is in libwolfssl-dev 3.13.0+dfsg-1.

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
/* asn1.h for openssl */

#ifndef WOLFSSL_ASN1_H_
#define WOLFSSL_ASN1_H_
struct WOLFSSL_ASN1_BIT_STRING {
    int length;
    int type;
    char* data;
    long flags;
};

struct WOLFSSL_ASN1_STRING {
    int length;
    int type;
    char* data;
    long flags;
};

#endif /* WOLFSSL_ASN1_H_ */