/src/openssl33/crypto/asn1/tasn_typ.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <stdio.h> |
11 | | #include <openssl/asn1.h> |
12 | | #include <openssl/asn1t.h> |
13 | | |
14 | | /* Declarations for string types */ |
15 | | |
16 | | #define IMPLEMENT_ASN1_STRING_FUNCTIONS(sname) \ |
17 | | IMPLEMENT_ASN1_TYPE(sname) \ |
18 | | IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(sname, sname, sname) \ |
19 | | sname *sname##_new(void) \ |
20 | 15.4M | { \ |
21 | 15.4M | return ASN1_STRING_type_new(V_##sname); \ |
22 | 15.4M | } \ Line | Count | Source | 20 | 133k | { \ | 21 | 133k | return ASN1_STRING_type_new(V_##sname); \ | 22 | 133k | } \ |
Line | Count | Source | 20 | 10.0M | { \ | 21 | 10.0M | return ASN1_STRING_type_new(V_##sname); \ | 22 | 10.0M | } \ |
Unexecuted instantiation: ASN1_ENUMERATED_new Line | Count | Source | 20 | 5.00M | { \ | 21 | 5.00M | return ASN1_STRING_type_new(V_##sname); \ | 22 | 5.00M | } \ |
Line | Count | Source | 20 | 121k | { \ | 21 | 121k | return ASN1_STRING_type_new(V_##sname); \ | 22 | 121k | } \ |
Unexecuted instantiation: ASN1_PRINTABLESTRING_new Unexecuted instantiation: ASN1_T61STRING_new Unexecuted instantiation: ASN1_IA5STRING_new Unexecuted instantiation: ASN1_GENERALSTRING_new Unexecuted instantiation: ASN1_UTCTIME_new Line | Count | Source | 20 | 144k | { \ | 21 | 144k | return ASN1_STRING_type_new(V_##sname); \ | 22 | 144k | } \ |
Unexecuted instantiation: ASN1_VISIBLESTRING_new Unexecuted instantiation: ASN1_UNIVERSALSTRING_new Unexecuted instantiation: ASN1_BMPSTRING_new |
23 | | void sname##_free(sname *x) \ |
24 | 26.3M | { \ |
25 | 26.3M | ASN1_STRING_free(x); \ |
26 | 26.3M | } Line | Count | Source | 24 | 10.7M | { \ | 25 | 10.7M | ASN1_STRING_free(x); \ | 26 | 10.7M | } |
Line | Count | Source | 24 | 7.27M | { \ | 25 | 7.27M | ASN1_STRING_free(x); \ | 26 | 7.27M | } |
Line | Count | Source | 24 | 4.90M | { \ | 25 | 4.90M | ASN1_STRING_free(x); \ | 26 | 4.90M | } |
Line | Count | Source | 24 | 3.28M | { \ | 25 | 3.28M | ASN1_STRING_free(x); \ | 26 | 3.28M | } |
Unexecuted instantiation: ASN1_UTF8STRING_free Unexecuted instantiation: ASN1_PRINTABLESTRING_free Unexecuted instantiation: ASN1_T61STRING_free Unexecuted instantiation: ASN1_IA5STRING_free Unexecuted instantiation: ASN1_GENERALSTRING_free Unexecuted instantiation: ASN1_UTCTIME_free ASN1_GENERALIZEDTIME_free Line | Count | Source | 24 | 101k | { \ | 25 | 101k | ASN1_STRING_free(x); \ | 26 | 101k | } |
Unexecuted instantiation: ASN1_VISIBLESTRING_free Unexecuted instantiation: ASN1_UNIVERSALSTRING_free Unexecuted instantiation: ASN1_BMPSTRING_free |
27 | | |
28 | 75.5M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_OCTET_STRING) |
29 | 127M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_INTEGER) |
30 | 127M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_ENUMERATED) |
31 | 85.8M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_BIT_STRING) |
32 | 85.8M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UTF8STRING) |
33 | 3.29M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_PRINTABLESTRING) |
34 | 259k | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_T61STRING) |
35 | 18.5M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_IA5STRING) |
36 | 18.5M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_GENERALSTRING) |
37 | 141k | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UTCTIME) |
38 | 6.75M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_GENERALIZEDTIME) |
39 | 6.75M | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_VISIBLESTRING) |
40 | 141k | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UNIVERSALSTRING) |
41 | 141k | IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_BMPSTRING) |
42 | 141k | |
43 | 1.16M | IMPLEMENT_ASN1_TYPE(ASN1_NULL) |
44 | 1.16M | IMPLEMENT_ASN1_FUNCTIONS(ASN1_NULL) |
45 | 1.16M | |
46 | 530M | IMPLEMENT_ASN1_TYPE(ASN1_OBJECT) |
47 | 530M | |
48 | 664M | IMPLEMENT_ASN1_TYPE(ASN1_ANY) |
49 | 664M | |
50 | 664M | /* Just swallow an ASN1_SEQUENCE in an ASN1_STRING */ |
51 | 664M | IMPLEMENT_ASN1_TYPE(ASN1_SEQUENCE) |
52 | 22.2M | |
53 | 22.2M | IMPLEMENT_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE) |
54 | 22.2M | |
55 | 22.2M | /* Multistring types */ |
56 | 22.2M | |
57 | 207M | IMPLEMENT_ASN1_MSTRING(ASN1_PRINTABLE, B_ASN1_PRINTABLE) |
58 | | IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE) |
59 | | |
60 | 624k | IMPLEMENT_ASN1_MSTRING(DISPLAYTEXT, B_ASN1_DISPLAYTEXT) |
61 | | IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT) |
62 | | |
63 | 733k | IMPLEMENT_ASN1_MSTRING(DIRECTORYSTRING, B_ASN1_DIRECTORYSTRING) |
64 | | IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING) |
65 | | |
66 | | /* Three separate BOOLEAN type: normal, DEFAULT TRUE and DEFAULT FALSE */ |
67 | 6.01M | IMPLEMENT_ASN1_TYPE_ex(ASN1_BOOLEAN, ASN1_BOOLEAN, -1) |
68 | 280k | IMPLEMENT_ASN1_TYPE_ex(ASN1_TBOOLEAN, ASN1_BOOLEAN, 1) |
69 | 23.1M | IMPLEMENT_ASN1_TYPE_ex(ASN1_FBOOLEAN, ASN1_BOOLEAN, 0) |
70 | | |
71 | | /* Special, OCTET STRING with indefinite length constructed support */ |
72 | | |
73 | 972k | IMPLEMENT_ASN1_TYPE_ex(ASN1_OCTET_STRING_NDEF, ASN1_OCTET_STRING, ASN1_TFLG_NDEF) |
74 | | |
75 | | ASN1_ITEM_TEMPLATE(ASN1_SEQUENCE_ANY) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, ASN1_SEQUENCE_ANY, ASN1_ANY) |
76 | 132k | ASN1_ITEM_TEMPLATE_END(ASN1_SEQUENCE_ANY) |
77 | | |
78 | | ASN1_ITEM_TEMPLATE(ASN1_SET_ANY) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_OF, 0, ASN1_SET_ANY, ASN1_ANY) |
79 | | ASN1_ITEM_TEMPLATE_END(ASN1_SET_ANY) |
80 | | |
81 | | IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY) |
82 | | IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(ASN1_SEQUENCE_ANY, ASN1_SET_ANY, ASN1_SET_ANY) |