@annadata/capacitor-mqtt-quic 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. package/ios/include/nghttp3/nghttp3.h +3295 -0
  2. package/ios/include/nghttp3/version.h +46 -0
  3. package/ios/include/ngtcp2/ngtcp2.h +6254 -0
  4. package/ios/include/ngtcp2/ngtcp2_crypto.h +1037 -0
  5. package/ios/include/ngtcp2/ngtcp2_crypto_quictls.h +147 -0
  6. package/ios/include/ngtcp2/version.h +51 -0
  7. package/ios/include/openssl/aes.h +111 -0
  8. package/ios/include/openssl/asn1.h +1131 -0
  9. package/ios/include/openssl/asn1_mac.h +10 -0
  10. package/ios/include/openssl/asn1err.h +140 -0
  11. package/ios/include/openssl/asn1t.h +946 -0
  12. package/ios/include/openssl/async.h +96 -0
  13. package/ios/include/openssl/asyncerr.h +29 -0
  14. package/ios/include/openssl/bio.h +887 -0
  15. package/ios/include/openssl/bioerr.h +65 -0
  16. package/ios/include/openssl/blowfish.h +78 -0
  17. package/ios/include/openssl/bn.h +584 -0
  18. package/ios/include/openssl/bnerr.h +47 -0
  19. package/ios/include/openssl/buffer.h +62 -0
  20. package/ios/include/openssl/buffererr.h +25 -0
  21. package/ios/include/openssl/camellia.h +117 -0
  22. package/ios/include/openssl/cast.h +71 -0
  23. package/ios/include/openssl/cmac.h +52 -0
  24. package/ios/include/openssl/cmp.h +597 -0
  25. package/ios/include/openssl/cmp_util.h +56 -0
  26. package/ios/include/openssl/cmperr.h +116 -0
  27. package/ios/include/openssl/cms.h +493 -0
  28. package/ios/include/openssl/cmserr.h +124 -0
  29. package/ios/include/openssl/comp.h +59 -0
  30. package/ios/include/openssl/comperr.h +31 -0
  31. package/ios/include/openssl/conf.h +214 -0
  32. package/ios/include/openssl/conf_api.h +46 -0
  33. package/ios/include/openssl/conferr.h +52 -0
  34. package/ios/include/openssl/configuration.h +149 -0
  35. package/ios/include/openssl/conftypes.h +44 -0
  36. package/ios/include/openssl/core.h +233 -0
  37. package/ios/include/openssl/core_dispatch.h +960 -0
  38. package/ios/include/openssl/core_names.h +561 -0
  39. package/ios/include/openssl/core_object.h +41 -0
  40. package/ios/include/openssl/crmf.h +227 -0
  41. package/ios/include/openssl/crmferr.h +50 -0
  42. package/ios/include/openssl/crypto.h +558 -0
  43. package/ios/include/openssl/cryptoerr.h +55 -0
  44. package/ios/include/openssl/cryptoerr_legacy.h +1466 -0
  45. package/ios/include/openssl/ct.h +573 -0
  46. package/ios/include/openssl/cterr.h +45 -0
  47. package/ios/include/openssl/decoder.h +133 -0
  48. package/ios/include/openssl/decodererr.h +28 -0
  49. package/ios/include/openssl/des.h +211 -0
  50. package/ios/include/openssl/dh.h +335 -0
  51. package/ios/include/openssl/dherr.h +58 -0
  52. package/ios/include/openssl/dsa.h +280 -0
  53. package/ios/include/openssl/dsaerr.h +44 -0
  54. package/ios/include/openssl/dtls1.h +57 -0
  55. package/ios/include/openssl/e_os2.h +308 -0
  56. package/ios/include/openssl/ebcdic.h +39 -0
  57. package/ios/include/openssl/ec.h +1572 -0
  58. package/ios/include/openssl/ecdh.h +10 -0
  59. package/ios/include/openssl/ecdsa.h +10 -0
  60. package/ios/include/openssl/ecerr.h +104 -0
  61. package/ios/include/openssl/encoder.h +124 -0
  62. package/ios/include/openssl/encodererr.h +28 -0
  63. package/ios/include/openssl/engine.h +833 -0
  64. package/ios/include/openssl/engineerr.h +63 -0
  65. package/ios/include/openssl/err.h +504 -0
  66. package/ios/include/openssl/ess.h +128 -0
  67. package/ios/include/openssl/esserr.h +32 -0
  68. package/ios/include/openssl/evp.h +2175 -0
  69. package/ios/include/openssl/evperr.h +134 -0
  70. package/ios/include/openssl/fips_names.h +77 -0
  71. package/ios/include/openssl/fipskey.h +36 -0
  72. package/ios/include/openssl/hmac.h +62 -0
  73. package/ios/include/openssl/http.h +109 -0
  74. package/ios/include/openssl/httperr.h +55 -0
  75. package/ios/include/openssl/idea.h +82 -0
  76. package/ios/include/openssl/kdf.h +138 -0
  77. package/ios/include/openssl/kdferr.h +16 -0
  78. package/ios/include/openssl/lhash.h +331 -0
  79. package/ios/include/openssl/macros.h +325 -0
  80. package/ios/include/openssl/md2.h +56 -0
  81. package/ios/include/openssl/md4.h +63 -0
  82. package/ios/include/openssl/md5.h +62 -0
  83. package/ios/include/openssl/mdc2.h +55 -0
  84. package/ios/include/openssl/modes.h +219 -0
  85. package/ios/include/openssl/obj_mac.h +5481 -0
  86. package/ios/include/openssl/objects.h +183 -0
  87. package/ios/include/openssl/objectserr.h +28 -0
  88. package/ios/include/openssl/ocsp.h +483 -0
  89. package/ios/include/openssl/ocsperr.h +53 -0
  90. package/ios/include/openssl/opensslconf.h +17 -0
  91. package/ios/include/openssl/opensslv.h +114 -0
  92. package/ios/include/openssl/ossl_typ.h +16 -0
  93. package/ios/include/openssl/param_build.h +63 -0
  94. package/ios/include/openssl/params.h +160 -0
  95. package/ios/include/openssl/pem.h +541 -0
  96. package/ios/include/openssl/pem2.h +19 -0
  97. package/ios/include/openssl/pemerr.h +58 -0
  98. package/ios/include/openssl/pkcs12.h +353 -0
  99. package/ios/include/openssl/pkcs12err.h +45 -0
  100. package/ios/include/openssl/pkcs7.h +430 -0
  101. package/ios/include/openssl/pkcs7err.h +63 -0
  102. package/ios/include/openssl/prov_ssl.h +34 -0
  103. package/ios/include/openssl/proverr.h +149 -0
  104. package/ios/include/openssl/provider.h +60 -0
  105. package/ios/include/openssl/quic.h +19 -0
  106. package/ios/include/openssl/rand.h +125 -0
  107. package/ios/include/openssl/randerr.h +69 -0
  108. package/ios/include/openssl/rc2.h +68 -0
  109. package/ios/include/openssl/rc4.h +47 -0
  110. package/ios/include/openssl/rc5.h +79 -0
  111. package/ios/include/openssl/ripemd.h +59 -0
  112. package/ios/include/openssl/rsa.h +610 -0
  113. package/ios/include/openssl/rsaerr.h +107 -0
  114. package/ios/include/openssl/safestack.h +297 -0
  115. package/ios/include/openssl/seed.h +113 -0
  116. package/ios/include/openssl/self_test.h +94 -0
  117. package/ios/include/openssl/sha.h +138 -0
  118. package/ios/include/openssl/srp.h +285 -0
  119. package/ios/include/openssl/srtp.h +56 -0
  120. package/ios/include/openssl/ssl.h +2671 -0
  121. package/ios/include/openssl/ssl2.h +30 -0
  122. package/ios/include/openssl/ssl3.h +347 -0
  123. package/ios/include/openssl/sslerr.h +348 -0
  124. package/ios/include/openssl/sslerr_legacy.h +468 -0
  125. package/ios/include/openssl/stack.h +90 -0
  126. package/ios/include/openssl/store.h +369 -0
  127. package/ios/include/openssl/storeerr.h +49 -0
  128. package/ios/include/openssl/symhacks.h +39 -0
  129. package/ios/include/openssl/tls1.h +1186 -0
  130. package/ios/include/openssl/trace.h +312 -0
  131. package/ios/include/openssl/ts.h +505 -0
  132. package/ios/include/openssl/tserr.h +67 -0
  133. package/ios/include/openssl/txt_db.h +63 -0
  134. package/ios/include/openssl/types.h +239 -0
  135. package/ios/include/openssl/ui.h +407 -0
  136. package/ios/include/openssl/uierr.h +38 -0
  137. package/ios/include/openssl/whrlpool.h +62 -0
  138. package/ios/include/openssl/x509.h +1279 -0
  139. package/ios/include/openssl/x509_vfy.h +894 -0
  140. package/ios/include/openssl/x509err.h +69 -0
  141. package/ios/include/openssl/x509v3.h +1453 -0
  142. package/ios/include/openssl/x509v3err.h +93 -0
  143. package/ios/libs/libcrypto.a +0 -0
  144. package/ios/libs/libnghttp3.a +0 -0
  145. package/ios/libs/libngtcp2.a +0 -0
  146. package/ios/libs/libngtcp2_crypto_quictls.a +0 -0
  147. package/ios/libs/libssl.a +0 -0
  148. package/package.json +2 -2
@@ -0,0 +1,10 @@
1
+ /*
2
+ * Copyright 2015-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
+ #error "This file is obsolete; please update your software."
@@ -0,0 +1,140 @@
1
+ /*
2
+ * Generated by util/mkerr.pl DO NOT EDIT
3
+ * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
4
+ *
5
+ * Licensed under the Apache License 2.0 (the "License"). You may not use
6
+ * this file except in compliance with the License. You can obtain a copy
7
+ * in the file LICENSE in the source distribution or at
8
+ * https://www.openssl.org/source/license.html
9
+ */
10
+
11
+ #ifndef OPENSSL_ASN1ERR_H
12
+ # define OPENSSL_ASN1ERR_H
13
+ # pragma once
14
+
15
+ # include <openssl/opensslconf.h>
16
+ # include <openssl/symhacks.h>
17
+ # include <openssl/cryptoerr_legacy.h>
18
+
19
+
20
+
21
+ /*
22
+ * ASN1 reason codes.
23
+ */
24
+ # define ASN1_R_ADDING_OBJECT 171
25
+ # define ASN1_R_ASN1_PARSE_ERROR 203
26
+ # define ASN1_R_ASN1_SIG_PARSE_ERROR 204
27
+ # define ASN1_R_AUX_ERROR 100
28
+ # define ASN1_R_BAD_OBJECT_HEADER 102
29
+ # define ASN1_R_BAD_TEMPLATE 230
30
+ # define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 214
31
+ # define ASN1_R_BN_LIB 105
32
+ # define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 106
33
+ # define ASN1_R_BUFFER_TOO_SMALL 107
34
+ # define ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER 108
35
+ # define ASN1_R_CONTEXT_NOT_INITIALISED 217
36
+ # define ASN1_R_DATA_IS_WRONG 109
37
+ # define ASN1_R_DECODE_ERROR 110
38
+ # define ASN1_R_DEPTH_EXCEEDED 174
39
+ # define ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 198
40
+ # define ASN1_R_ENCODE_ERROR 112
41
+ # define ASN1_R_ERROR_GETTING_TIME 173
42
+ # define ASN1_R_ERROR_LOADING_SECTION 172
43
+ # define ASN1_R_ERROR_SETTING_CIPHER_PARAMS 114
44
+ # define ASN1_R_EXPECTING_AN_INTEGER 115
45
+ # define ASN1_R_EXPECTING_AN_OBJECT 116
46
+ # define ASN1_R_EXPLICIT_LENGTH_MISMATCH 119
47
+ # define ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED 120
48
+ # define ASN1_R_FIELD_MISSING 121
49
+ # define ASN1_R_FIRST_NUM_TOO_LARGE 122
50
+ # define ASN1_R_HEADER_TOO_LONG 123
51
+ # define ASN1_R_ILLEGAL_BITSTRING_FORMAT 175
52
+ # define ASN1_R_ILLEGAL_BOOLEAN 176
53
+ # define ASN1_R_ILLEGAL_CHARACTERS 124
54
+ # define ASN1_R_ILLEGAL_FORMAT 177
55
+ # define ASN1_R_ILLEGAL_HEX 178
56
+ # define ASN1_R_ILLEGAL_IMPLICIT_TAG 179
57
+ # define ASN1_R_ILLEGAL_INTEGER 180
58
+ # define ASN1_R_ILLEGAL_NEGATIVE_VALUE 226
59
+ # define ASN1_R_ILLEGAL_NESTED_TAGGING 181
60
+ # define ASN1_R_ILLEGAL_NULL 125
61
+ # define ASN1_R_ILLEGAL_NULL_VALUE 182
62
+ # define ASN1_R_ILLEGAL_OBJECT 183
63
+ # define ASN1_R_ILLEGAL_OPTIONAL_ANY 126
64
+ # define ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE 170
65
+ # define ASN1_R_ILLEGAL_PADDING 221
66
+ # define ASN1_R_ILLEGAL_TAGGED_ANY 127
67
+ # define ASN1_R_ILLEGAL_TIME_VALUE 184
68
+ # define ASN1_R_ILLEGAL_ZERO_CONTENT 222
69
+ # define ASN1_R_INTEGER_NOT_ASCII_FORMAT 185
70
+ # define ASN1_R_INTEGER_TOO_LARGE_FOR_LONG 128
71
+ # define ASN1_R_INVALID_BIT_STRING_BITS_LEFT 220
72
+ # define ASN1_R_INVALID_BMPSTRING_LENGTH 129
73
+ # define ASN1_R_INVALID_DIGIT 130
74
+ # define ASN1_R_INVALID_MIME_TYPE 205
75
+ # define ASN1_R_INVALID_MODIFIER 186
76
+ # define ASN1_R_INVALID_NUMBER 187
77
+ # define ASN1_R_INVALID_OBJECT_ENCODING 216
78
+ # define ASN1_R_INVALID_SCRYPT_PARAMETERS 227
79
+ # define ASN1_R_INVALID_SEPARATOR 131
80
+ # define ASN1_R_INVALID_STRING_TABLE_VALUE 218
81
+ # define ASN1_R_INVALID_UNIVERSALSTRING_LENGTH 133
82
+ # define ASN1_R_INVALID_UTF8STRING 134
83
+ # define ASN1_R_INVALID_VALUE 219
84
+ # define ASN1_R_LENGTH_TOO_LONG 231
85
+ # define ASN1_R_LIST_ERROR 188
86
+ # define ASN1_R_MIME_NO_CONTENT_TYPE 206
87
+ # define ASN1_R_MIME_PARSE_ERROR 207
88
+ # define ASN1_R_MIME_SIG_PARSE_ERROR 208
89
+ # define ASN1_R_MISSING_EOC 137
90
+ # define ASN1_R_MISSING_SECOND_NUMBER 138
91
+ # define ASN1_R_MISSING_VALUE 189
92
+ # define ASN1_R_MSTRING_NOT_UNIVERSAL 139
93
+ # define ASN1_R_MSTRING_WRONG_TAG 140
94
+ # define ASN1_R_NESTED_ASN1_STRING 197
95
+ # define ASN1_R_NESTED_TOO_DEEP 201
96
+ # define ASN1_R_NON_HEX_CHARACTERS 141
97
+ # define ASN1_R_NOT_ASCII_FORMAT 190
98
+ # define ASN1_R_NOT_ENOUGH_DATA 142
99
+ # define ASN1_R_NO_CONTENT_TYPE 209
100
+ # define ASN1_R_NO_MATCHING_CHOICE_TYPE 143
101
+ # define ASN1_R_NO_MULTIPART_BODY_FAILURE 210
102
+ # define ASN1_R_NO_MULTIPART_BOUNDARY 211
103
+ # define ASN1_R_NO_SIG_CONTENT_TYPE 212
104
+ # define ASN1_R_NULL_IS_WRONG_LENGTH 144
105
+ # define ASN1_R_OBJECT_NOT_ASCII_FORMAT 191
106
+ # define ASN1_R_ODD_NUMBER_OF_CHARS 145
107
+ # define ASN1_R_SECOND_NUMBER_TOO_LARGE 147
108
+ # define ASN1_R_SEQUENCE_LENGTH_MISMATCH 148
109
+ # define ASN1_R_SEQUENCE_NOT_CONSTRUCTED 149
110
+ # define ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG 192
111
+ # define ASN1_R_SHORT_LINE 150
112
+ # define ASN1_R_SIG_INVALID_MIME_TYPE 213
113
+ # define ASN1_R_STREAMING_NOT_SUPPORTED 202
114
+ # define ASN1_R_STRING_TOO_LONG 151
115
+ # define ASN1_R_STRING_TOO_SHORT 152
116
+ # define ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 154
117
+ # define ASN1_R_TIME_NOT_ASCII_FORMAT 193
118
+ # define ASN1_R_TOO_LARGE 223
119
+ # define ASN1_R_TOO_LONG 155
120
+ # define ASN1_R_TOO_SMALL 224
121
+ # define ASN1_R_TYPE_NOT_CONSTRUCTED 156
122
+ # define ASN1_R_TYPE_NOT_PRIMITIVE 195
123
+ # define ASN1_R_UNEXPECTED_EOC 159
124
+ # define ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH 215
125
+ # define ASN1_R_UNKNOWN_DIGEST 229
126
+ # define ASN1_R_UNKNOWN_FORMAT 160
127
+ # define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 161
128
+ # define ASN1_R_UNKNOWN_OBJECT_TYPE 162
129
+ # define ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE 163
130
+ # define ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM 199
131
+ # define ASN1_R_UNKNOWN_TAG 194
132
+ # define ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE 164
133
+ # define ASN1_R_UNSUPPORTED_CIPHER 228
134
+ # define ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE 167
135
+ # define ASN1_R_UNSUPPORTED_TYPE 196
136
+ # define ASN1_R_WRONG_INTEGER_TYPE 225
137
+ # define ASN1_R_WRONG_PUBLIC_KEY_TYPE 200
138
+ # define ASN1_R_WRONG_TAG 168
139
+
140
+ #endif