@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,25 @@
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_BUFFERERR_H
12
+ # define OPENSSL_BUFFERERR_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
+ * BUF reason codes.
23
+ */
24
+
25
+ #endif
@@ -0,0 +1,117 @@
1
+ /*
2
+ * Copyright 2006-2020 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
+ #ifndef OPENSSL_CAMELLIA_H
11
+ # define OPENSSL_CAMELLIA_H
12
+ # pragma once
13
+
14
+ # include <openssl/macros.h>
15
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
16
+ # define HEADER_CAMELLIA_H
17
+ # endif
18
+
19
+ # include <openssl/opensslconf.h>
20
+
21
+ # ifndef OPENSSL_NO_CAMELLIA
22
+ # include <stddef.h>
23
+ #ifdef __cplusplus
24
+ extern "C" {
25
+ #endif
26
+
27
+ # define CAMELLIA_BLOCK_SIZE 16
28
+
29
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
30
+
31
+ # define CAMELLIA_ENCRYPT 1
32
+ # define CAMELLIA_DECRYPT 0
33
+
34
+ /*
35
+ * Because array size can't be a const in C, the following two are macros.
36
+ * Both sizes are in bytes.
37
+ */
38
+
39
+ /* This should be a hidden type, but EVP requires that the size be known */
40
+
41
+ # define CAMELLIA_TABLE_BYTE_LEN 272
42
+ # define CAMELLIA_TABLE_WORD_LEN (CAMELLIA_TABLE_BYTE_LEN / 4)
43
+
44
+ typedef unsigned int KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN]; /* to match
45
+ * with WORD */
46
+
47
+ struct camellia_key_st {
48
+ union {
49
+ double d; /* ensures 64-bit align */
50
+ KEY_TABLE_TYPE rd_key;
51
+ } u;
52
+ int grand_rounds;
53
+ };
54
+ typedef struct camellia_key_st CAMELLIA_KEY;
55
+
56
+ # endif /* OPENSSL_NO_DEPRECATED_3_0 */
57
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
58
+ OSSL_DEPRECATEDIN_3_0 int Camellia_set_key(const unsigned char *userKey,
59
+ const int bits,
60
+ CAMELLIA_KEY *key);
61
+ OSSL_DEPRECATEDIN_3_0 void Camellia_encrypt(const unsigned char *in,
62
+ unsigned char *out,
63
+ const CAMELLIA_KEY *key);
64
+ OSSL_DEPRECATEDIN_3_0 void Camellia_decrypt(const unsigned char *in,
65
+ unsigned char *out,
66
+ const CAMELLIA_KEY *key);
67
+ OSSL_DEPRECATEDIN_3_0 void Camellia_ecb_encrypt(const unsigned char *in,
68
+ unsigned char *out,
69
+ const CAMELLIA_KEY *key,
70
+ const int enc);
71
+ OSSL_DEPRECATEDIN_3_0 void Camellia_cbc_encrypt(const unsigned char *in,
72
+ unsigned char *out,
73
+ size_t length,
74
+ const CAMELLIA_KEY *key,
75
+ unsigned char *ivec,
76
+ const int enc);
77
+ OSSL_DEPRECATEDIN_3_0 void Camellia_cfb128_encrypt(const unsigned char *in,
78
+ unsigned char *out,
79
+ size_t length,
80
+ const CAMELLIA_KEY *key,
81
+ unsigned char *ivec,
82
+ int *num,
83
+ const int enc);
84
+ OSSL_DEPRECATEDIN_3_0 void Camellia_cfb1_encrypt(const unsigned char *in,
85
+ unsigned char *out,
86
+ size_t length,
87
+ const CAMELLIA_KEY *key,
88
+ unsigned char *ivec,
89
+ int *num,
90
+ const int enc);
91
+ OSSL_DEPRECATEDIN_3_0 void Camellia_cfb8_encrypt(const unsigned char *in,
92
+ unsigned char *out,
93
+ size_t length,
94
+ const CAMELLIA_KEY *key,
95
+ unsigned char *ivec,
96
+ int *num,
97
+ const int enc);
98
+ OSSL_DEPRECATEDIN_3_0 void Camellia_ofb128_encrypt(const unsigned char *in,
99
+ unsigned char *out,
100
+ size_t length,
101
+ const CAMELLIA_KEY *key,
102
+ unsigned char *ivec,
103
+ int *num);
104
+ OSSL_DEPRECATEDIN_3_0
105
+ void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out,
106
+ size_t length, const CAMELLIA_KEY *key,
107
+ unsigned char ivec[CAMELLIA_BLOCK_SIZE],
108
+ unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE],
109
+ unsigned int *num);
110
+ # endif
111
+
112
+ # ifdef __cplusplus
113
+ }
114
+ # endif
115
+ # endif
116
+
117
+ #endif
@@ -0,0 +1,71 @@
1
+ /*
2
+ * Copyright 1995-2020 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
+ #ifndef OPENSSL_CAST_H
11
+ # define OPENSSL_CAST_H
12
+ # pragma once
13
+
14
+ # include <openssl/macros.h>
15
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
16
+ # define HEADER_CAST_H
17
+ # endif
18
+
19
+ # include <openssl/opensslconf.h>
20
+
21
+ # ifndef OPENSSL_NO_CAST
22
+ # ifdef __cplusplus
23
+ extern "C" {
24
+ # endif
25
+
26
+ # define CAST_BLOCK 8
27
+ # define CAST_KEY_LENGTH 16
28
+
29
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
30
+
31
+ # define CAST_ENCRYPT 1
32
+ # define CAST_DECRYPT 0
33
+
34
+ # define CAST_LONG unsigned int
35
+
36
+ typedef struct cast_key_st {
37
+ CAST_LONG data[32];
38
+ int short_key; /* Use reduced rounds for short key */
39
+ } CAST_KEY;
40
+
41
+ # endif /* OPENSSL_NO_DEPRECATED_3_0 */
42
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
43
+ OSSL_DEPRECATEDIN_3_0
44
+ void CAST_set_key(CAST_KEY *key, int len, const unsigned char *data);
45
+ OSSL_DEPRECATEDIN_3_0
46
+ void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out,
47
+ const CAST_KEY *key, int enc);
48
+ OSSL_DEPRECATEDIN_3_0
49
+ void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key);
50
+ OSSL_DEPRECATEDIN_3_0
51
+ void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key);
52
+ OSSL_DEPRECATEDIN_3_0
53
+ void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out,
54
+ long length, const CAST_KEY *ks, unsigned char *iv,
55
+ int enc);
56
+ OSSL_DEPRECATEDIN_3_0
57
+ void CAST_cfb64_encrypt(const unsigned char *in, unsigned char *out,
58
+ long length, const CAST_KEY *schedule,
59
+ unsigned char *ivec, int *num, int enc);
60
+ OSSL_DEPRECATEDIN_3_0
61
+ void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out,
62
+ long length, const CAST_KEY *schedule,
63
+ unsigned char *ivec, int *num);
64
+ # endif
65
+
66
+ # ifdef __cplusplus
67
+ }
68
+ # endif
69
+ # endif
70
+
71
+ #endif
@@ -0,0 +1,52 @@
1
+ /*
2
+ * Copyright 2010-2020 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
+ #ifndef OPENSSL_CMAC_H
11
+ # define OPENSSL_CMAC_H
12
+ # pragma once
13
+
14
+ # include <openssl/macros.h>
15
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
16
+ # define HEADER_CMAC_H
17
+ # endif
18
+
19
+ # ifndef OPENSSL_NO_CMAC
20
+
21
+ # ifdef __cplusplus
22
+ extern "C" {
23
+ # endif
24
+
25
+ # include <openssl/evp.h>
26
+
27
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
28
+ /* Opaque */
29
+ typedef struct CMAC_CTX_st CMAC_CTX;
30
+ # endif
31
+ # ifndef OPENSSL_NO_DEPRECATED_3_0
32
+ OSSL_DEPRECATEDIN_3_0 CMAC_CTX *CMAC_CTX_new(void);
33
+ OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_cleanup(CMAC_CTX *ctx);
34
+ OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_free(CMAC_CTX *ctx);
35
+ OSSL_DEPRECATEDIN_3_0 EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx);
36
+ OSSL_DEPRECATEDIN_3_0 int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in);
37
+ OSSL_DEPRECATEDIN_3_0 int CMAC_Init(CMAC_CTX *ctx,
38
+ const void *key, size_t keylen,
39
+ const EVP_CIPHER *cipher, ENGINE *impl);
40
+ OSSL_DEPRECATEDIN_3_0 int CMAC_Update(CMAC_CTX *ctx,
41
+ const void *data, size_t dlen);
42
+ OSSL_DEPRECATEDIN_3_0 int CMAC_Final(CMAC_CTX *ctx,
43
+ unsigned char *out, size_t *poutlen);
44
+ OSSL_DEPRECATEDIN_3_0 int CMAC_resume(CMAC_CTX *ctx);
45
+ # endif
46
+
47
+ # ifdef __cplusplus
48
+ }
49
+ # endif
50
+
51
+ # endif
52
+ #endif