@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,16 @@
1
+ /*
2
+ * Copyright 2019 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
+ /*
11
+ * The original <openssl/ossl_typ.h> was renamed to <openssl/types.h>
12
+ *
13
+ * This header file only exists for compatibility reasons with older
14
+ * applications which #include <openssl/ossl_typ.h>.
15
+ */
16
+ # include <openssl/types.h>
@@ -0,0 +1,63 @@
1
+ /*
2
+ * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
3
+ * Copyright (c) 2019, Oracle and/or its affiliates. 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_PARAM_BUILD_H
12
+ # define OPENSSL_PARAM_BUILD_H
13
+ # pragma once
14
+
15
+ # include <openssl/params.h>
16
+ # include <openssl/types.h>
17
+
18
+ # ifdef __cplusplus
19
+ extern "C" {
20
+ # endif
21
+
22
+ OSSL_PARAM_BLD *OSSL_PARAM_BLD_new(void);
23
+ OSSL_PARAM *OSSL_PARAM_BLD_to_param(OSSL_PARAM_BLD *bld);
24
+ void OSSL_PARAM_BLD_free(OSSL_PARAM_BLD *bld);
25
+
26
+ int OSSL_PARAM_BLD_push_int(OSSL_PARAM_BLD *bld, const char *key, int val);
27
+ int OSSL_PARAM_BLD_push_uint(OSSL_PARAM_BLD *bld, const char *key,
28
+ unsigned int val);
29
+ int OSSL_PARAM_BLD_push_long(OSSL_PARAM_BLD *bld, const char *key,
30
+ long int val);
31
+ int OSSL_PARAM_BLD_push_ulong(OSSL_PARAM_BLD *bld, const char *key,
32
+ unsigned long int val);
33
+ int OSSL_PARAM_BLD_push_int32(OSSL_PARAM_BLD *bld, const char *key,
34
+ int32_t val);
35
+ int OSSL_PARAM_BLD_push_uint32(OSSL_PARAM_BLD *bld, const char *key,
36
+ uint32_t val);
37
+ int OSSL_PARAM_BLD_push_int64(OSSL_PARAM_BLD *bld, const char *key,
38
+ int64_t val);
39
+ int OSSL_PARAM_BLD_push_uint64(OSSL_PARAM_BLD *bld, const char *key,
40
+ uint64_t val);
41
+ int OSSL_PARAM_BLD_push_size_t(OSSL_PARAM_BLD *bld, const char *key,
42
+ size_t val);
43
+ int OSSL_PARAM_BLD_push_time_t(OSSL_PARAM_BLD *bld, const char *key,
44
+ time_t val);
45
+ int OSSL_PARAM_BLD_push_double(OSSL_PARAM_BLD *bld, const char *key,
46
+ double val);
47
+ int OSSL_PARAM_BLD_push_BN(OSSL_PARAM_BLD *bld, const char *key,
48
+ const BIGNUM *bn);
49
+ int OSSL_PARAM_BLD_push_BN_pad(OSSL_PARAM_BLD *bld, const char *key,
50
+ const BIGNUM *bn, size_t sz);
51
+ int OSSL_PARAM_BLD_push_utf8_string(OSSL_PARAM_BLD *bld, const char *key,
52
+ const char *buf, size_t bsize);
53
+ int OSSL_PARAM_BLD_push_utf8_ptr(OSSL_PARAM_BLD *bld, const char *key,
54
+ char *buf, size_t bsize);
55
+ int OSSL_PARAM_BLD_push_octet_string(OSSL_PARAM_BLD *bld, const char *key,
56
+ const void *buf, size_t bsize);
57
+ int OSSL_PARAM_BLD_push_octet_ptr(OSSL_PARAM_BLD *bld, const char *key,
58
+ void *buf, size_t bsize);
59
+
60
+ # ifdef __cplusplus
61
+ }
62
+ # endif
63
+ #endif /* OPENSSL_PARAM_BUILD_H */
@@ -0,0 +1,160 @@
1
+ /*
2
+ * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
3
+ * Copyright (c) 2019, Oracle and/or its affiliates. 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_PARAMS_H
12
+ # define OPENSSL_PARAMS_H
13
+ # pragma once
14
+
15
+ # include <openssl/core.h>
16
+ # include <openssl/bn.h>
17
+
18
+ # ifdef __cplusplus
19
+ extern "C" {
20
+ # endif
21
+
22
+ # define OSSL_PARAM_UNMODIFIED ((size_t)-1)
23
+
24
+ # define OSSL_PARAM_END \
25
+ { NULL, 0, NULL, 0, 0 }
26
+
27
+ # define OSSL_PARAM_DEFN(key, type, addr, sz) \
28
+ { (key), (type), (addr), (sz), OSSL_PARAM_UNMODIFIED }
29
+
30
+ /* Basic parameter types without return sizes */
31
+ # define OSSL_PARAM_int(key, addr) \
32
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(int))
33
+ # define OSSL_PARAM_uint(key, addr) \
34
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGER, (addr), \
35
+ sizeof(unsigned int))
36
+ # define OSSL_PARAM_long(key, addr) \
37
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(long int))
38
+ # define OSSL_PARAM_ulong(key, addr) \
39
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGER, (addr), \
40
+ sizeof(unsigned long int))
41
+ # define OSSL_PARAM_int32(key, addr) \
42
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(int32_t))
43
+ # define OSSL_PARAM_uint32(key, addr) \
44
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGER, (addr), \
45
+ sizeof(uint32_t))
46
+ # define OSSL_PARAM_int64(key, addr) \
47
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(int64_t))
48
+ # define OSSL_PARAM_uint64(key, addr) \
49
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGER, (addr), \
50
+ sizeof(uint64_t))
51
+ # define OSSL_PARAM_size_t(key, addr) \
52
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGER, (addr), sizeof(size_t))
53
+ # define OSSL_PARAM_time_t(key, addr) \
54
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(time_t))
55
+ # define OSSL_PARAM_double(key, addr) \
56
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_REAL, (addr), sizeof(double))
57
+
58
+ # define OSSL_PARAM_BN(key, bn, sz) \
59
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGER, (bn), (sz))
60
+ # define OSSL_PARAM_utf8_string(key, addr, sz) \
61
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_UTF8_STRING, (addr), sz)
62
+ # define OSSL_PARAM_octet_string(key, addr, sz) \
63
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_OCTET_STRING, (addr), sz)
64
+
65
+ # define OSSL_PARAM_utf8_ptr(key, addr, sz) \
66
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_UTF8_PTR, (addr), sz)
67
+ # define OSSL_PARAM_octet_ptr(key, addr, sz) \
68
+ OSSL_PARAM_DEFN((key), OSSL_PARAM_OCTET_PTR, (addr), sz)
69
+
70
+ /* Search an OSSL_PARAM array for a matching name */
71
+ OSSL_PARAM *OSSL_PARAM_locate(OSSL_PARAM *p, const char *key);
72
+ const OSSL_PARAM *OSSL_PARAM_locate_const(const OSSL_PARAM *p, const char *key);
73
+
74
+ /* Basic parameter type run-time construction */
75
+ OSSL_PARAM OSSL_PARAM_construct_int(const char *key, int *buf);
76
+ OSSL_PARAM OSSL_PARAM_construct_uint(const char *key, unsigned int *buf);
77
+ OSSL_PARAM OSSL_PARAM_construct_long(const char *key, long int *buf);
78
+ OSSL_PARAM OSSL_PARAM_construct_ulong(const char *key, unsigned long int *buf);
79
+ OSSL_PARAM OSSL_PARAM_construct_int32(const char *key, int32_t *buf);
80
+ OSSL_PARAM OSSL_PARAM_construct_uint32(const char *key, uint32_t *buf);
81
+ OSSL_PARAM OSSL_PARAM_construct_int64(const char *key, int64_t *buf);
82
+ OSSL_PARAM OSSL_PARAM_construct_uint64(const char *key, uint64_t *buf);
83
+ OSSL_PARAM OSSL_PARAM_construct_size_t(const char *key, size_t *buf);
84
+ OSSL_PARAM OSSL_PARAM_construct_time_t(const char *key, time_t *buf);
85
+ OSSL_PARAM OSSL_PARAM_construct_BN(const char *key, unsigned char *buf,
86
+ size_t bsize);
87
+ OSSL_PARAM OSSL_PARAM_construct_double(const char *key, double *buf);
88
+ OSSL_PARAM OSSL_PARAM_construct_utf8_string(const char *key, char *buf,
89
+ size_t bsize);
90
+ OSSL_PARAM OSSL_PARAM_construct_utf8_ptr(const char *key, char **buf,
91
+ size_t bsize);
92
+ OSSL_PARAM OSSL_PARAM_construct_octet_string(const char *key, void *buf,
93
+ size_t bsize);
94
+ OSSL_PARAM OSSL_PARAM_construct_octet_ptr(const char *key, void **buf,
95
+ size_t bsize);
96
+ OSSL_PARAM OSSL_PARAM_construct_end(void);
97
+
98
+ int OSSL_PARAM_allocate_from_text(OSSL_PARAM *to,
99
+ const OSSL_PARAM *paramdefs,
100
+ const char *key, const char *value,
101
+ size_t value_n, int *found);
102
+
103
+ int OSSL_PARAM_get_int(const OSSL_PARAM *p, int *val);
104
+ int OSSL_PARAM_get_uint(const OSSL_PARAM *p, unsigned int *val);
105
+ int OSSL_PARAM_get_long(const OSSL_PARAM *p, long int *val);
106
+ int OSSL_PARAM_get_ulong(const OSSL_PARAM *p, unsigned long int *val);
107
+ int OSSL_PARAM_get_int32(const OSSL_PARAM *p, int32_t *val);
108
+ int OSSL_PARAM_get_uint32(const OSSL_PARAM *p, uint32_t *val);
109
+ int OSSL_PARAM_get_int64(const OSSL_PARAM *p, int64_t *val);
110
+ int OSSL_PARAM_get_uint64(const OSSL_PARAM *p, uint64_t *val);
111
+ int OSSL_PARAM_get_size_t(const OSSL_PARAM *p, size_t *val);
112
+ int OSSL_PARAM_get_time_t(const OSSL_PARAM *p, time_t *val);
113
+
114
+ int OSSL_PARAM_set_int(OSSL_PARAM *p, int val);
115
+ int OSSL_PARAM_set_uint(OSSL_PARAM *p, unsigned int val);
116
+ int OSSL_PARAM_set_long(OSSL_PARAM *p, long int val);
117
+ int OSSL_PARAM_set_ulong(OSSL_PARAM *p, unsigned long int val);
118
+ int OSSL_PARAM_set_int32(OSSL_PARAM *p, int32_t val);
119
+ int OSSL_PARAM_set_uint32(OSSL_PARAM *p, uint32_t val);
120
+ int OSSL_PARAM_set_int64(OSSL_PARAM *p, int64_t val);
121
+ int OSSL_PARAM_set_uint64(OSSL_PARAM *p, uint64_t val);
122
+ int OSSL_PARAM_set_size_t(OSSL_PARAM *p, size_t val);
123
+ int OSSL_PARAM_set_time_t(OSSL_PARAM *p, time_t val);
124
+
125
+ int OSSL_PARAM_get_double(const OSSL_PARAM *p, double *val);
126
+ int OSSL_PARAM_set_double(OSSL_PARAM *p, double val);
127
+
128
+ int OSSL_PARAM_get_BN(const OSSL_PARAM *p, BIGNUM **val);
129
+ int OSSL_PARAM_set_BN(OSSL_PARAM *p, const BIGNUM *val);
130
+
131
+ int OSSL_PARAM_get_utf8_string(const OSSL_PARAM *p, char **val, size_t max_len);
132
+ int OSSL_PARAM_set_utf8_string(OSSL_PARAM *p, const char *val);
133
+
134
+ int OSSL_PARAM_get_octet_string(const OSSL_PARAM *p, void **val, size_t max_len,
135
+ size_t *used_len);
136
+ int OSSL_PARAM_set_octet_string(OSSL_PARAM *p, const void *val, size_t len);
137
+
138
+ int OSSL_PARAM_get_utf8_ptr(const OSSL_PARAM *p, const char **val);
139
+ int OSSL_PARAM_set_utf8_ptr(OSSL_PARAM *p, const char *val);
140
+
141
+ int OSSL_PARAM_get_octet_ptr(const OSSL_PARAM *p, const void **val,
142
+ size_t *used_len);
143
+ int OSSL_PARAM_set_octet_ptr(OSSL_PARAM *p, const void *val,
144
+ size_t used_len);
145
+
146
+ int OSSL_PARAM_get_utf8_string_ptr(const OSSL_PARAM *p, const char **val);
147
+ int OSSL_PARAM_get_octet_string_ptr(const OSSL_PARAM *p, const void **val,
148
+ size_t *used_len);
149
+
150
+ int OSSL_PARAM_modified(const OSSL_PARAM *p);
151
+ void OSSL_PARAM_set_all_unmodified(OSSL_PARAM *p);
152
+
153
+ OSSL_PARAM *OSSL_PARAM_dup(const OSSL_PARAM *p);
154
+ OSSL_PARAM *OSSL_PARAM_merge(const OSSL_PARAM *p1, const OSSL_PARAM *p2);
155
+ void OSSL_PARAM_free(OSSL_PARAM *p);
156
+
157
+ # ifdef __cplusplus
158
+ }
159
+ # endif
160
+ #endif