base.h
Go to the documentation of this file.
1 /* ====================================================================
2  * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  *
16  * 3. All advertising materials mentioning features or use of this
17  * software must display the following acknowledgment:
18  * "This product includes software developed by the OpenSSL Project
19  * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
20  *
21  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
22  * endorse or promote products derived from this software without
23  * prior written permission. For written permission, please contact
24  * openssl-core@openssl.org.
25  *
26  * 5. Products derived from this software may not be called "OpenSSL"
27  * nor may "OpenSSL" appear in their names without prior written
28  * permission of the OpenSSL Project.
29  *
30  * 6. Redistributions of any form whatsoever must retain the following
31  * acknowledgment:
32  * "This product includes software developed by the OpenSSL Project
33  * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
34  *
35  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
36  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
41  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
42  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
46  * OF THE POSSIBILITY OF SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This product includes cryptographic software written by Eric Young
50  * (eay@cryptsoft.com). This product includes software written by Tim
51  * Hudson (tjh@cryptsoft.com). */
52 
53 #ifndef OPENSSL_HEADER_BASE_H
54 #define OPENSSL_HEADER_BASE_H
55 
56 
57 // This file should be the first included by all BoringSSL headers.
58 
59 #include <stddef.h>
60 #include <stdint.h>
61 #include <sys/types.h>
62 
63 #if defined(__MINGW32__)
64 // stdio.h is needed on MinGW for __MINGW_PRINTF_FORMAT.
65 #include <stdio.h>
66 #endif
67 
68 #if defined(__APPLE__)
69 #include <TargetConditionals.h>
70 #endif
71 
72 // Include a BoringSSL-only header so consumers including this header without
73 // setting up include paths do not accidentally pick up the system
74 // opensslconf.h.
75 #include <openssl/is_boringssl.h>
76 #include <openssl/opensslconf.h>
77 
78 #if defined(BORINGSSL_PREFIX)
80 #endif
81 
82 #if defined(__cplusplus)
83 extern "C" {
84 #endif
85 
86 
87 #if defined(__x86_64) || defined(_M_AMD64) || defined(_M_X64)
88 #define OPENSSL_64_BIT
89 #define OPENSSL_X86_64
90 #elif defined(__x86) || defined(__i386) || defined(__i386__) || defined(_M_IX86)
91 #define OPENSSL_32_BIT
92 #define OPENSSL_X86
93 #elif defined(__AARCH64EL__) || defined(_M_ARM64)
94 #define OPENSSL_64_BIT
95 #define OPENSSL_AARCH64
96 #elif defined(__ARMEL__) || defined(_M_ARM)
97 #define OPENSSL_32_BIT
98 #define OPENSSL_ARM
99 #elif (defined(__PPC64__) || defined(__powerpc64__)) && defined(_LITTLE_ENDIAN)
100 #define OPENSSL_64_BIT
101 #define OPENSSL_PPC64LE
102 #elif defined(__MIPSEL__) && !defined(__LP64__)
103 #define OPENSSL_32_BIT
104 #define OPENSSL_MIPS
105 #elif defined(__MIPSEL__) && defined(__LP64__)
106 #define OPENSSL_64_BIT
107 #define OPENSSL_MIPS64
108 #elif defined(__riscv) && __SIZEOF_POINTER__ == 8
109 #define OPENSSL_64_BIT
110 #elif defined(__riscv) && __SIZEOF_POINTER__ == 4
111 #define OPENSSL_32_BIT
112 #elif defined(__pnacl__)
113 #define OPENSSL_32_BIT
114 #define OPENSSL_PNACL
115 #elif defined(__wasm__)
116 #define OPENSSL_32_BIT
117 #elif defined(__asmjs__)
118 #define OPENSSL_32_BIT
119 #elif defined(__myriad2__)
120 #define OPENSSL_32_BIT
121 #else
122 // Note BoringSSL only supports standard 32-bit and 64-bit two's-complement,
123 // little-endian architectures. Functions will not produce the correct answer
124 // on other systems. Run the crypto_test binary, notably
125 // crypto/compiler_test.cc, before adding a new architecture.
126 #error "Unknown target CPU"
127 #endif
128 
129 #if defined(__APPLE__)
130 #define OPENSSL_APPLE
131 // Note |TARGET_OS_MAC| is set for all Apple OS variants. |TARGET_OS_OSX|
132 // targets macOS specifically.
133 #if defined(TARGET_OS_OSX) && TARGET_OS_OSX
134 #define OPENSSL_MACOS
135 #endif
136 #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
137 #define OPENSSL_IOS
138 #endif
139 #endif
140 
141 #if defined(_WIN32)
142 #define OPENSSL_WINDOWS
143 #endif
144 
145 // Trusty isn't Linux but currently defines __linux__. As a workaround, we
146 // exclude it here.
147 // TODO(b/169780122): Remove this workaround once Trusty no longer defines it.
148 #if defined(__linux__) && !defined(__TRUSTY__)
149 #define OPENSSL_LINUX
150 #endif
151 
152 #if defined(__Fuchsia__)
153 #define OPENSSL_FUCHSIA
154 #endif
155 
156 #if defined(__TRUSTY__)
157 #define OPENSSL_TRUSTY
158 #define OPENSSL_NO_THREADS_CORRUPT_MEMORY_AND_LEAK_SECRETS_IF_THREADED
159 #endif
160 
161 #if defined(__ANDROID_API__)
162 #define OPENSSL_ANDROID
163 #endif
164 
165 #if defined(__FreeBSD__)
166 #define OPENSSL_FREEBSD
167 #endif
168 
169 // BoringSSL requires platform's locking APIs to make internal global state
170 // thread-safe, including the PRNG. On some single-threaded embedded platforms,
171 // locking APIs may not exist, so this dependency may be disabled with the
172 // following build flag.
173 //
174 // IMPORTANT: Doing so means the consumer promises the library will never be
175 // used in any multi-threaded context. It causes BoringSSL to be globally
176 // thread-unsafe. Setting it inappropriately will subtly and unpredictably
177 // corrupt memory and leak secret keys.
178 //
179 // Do not set this flag on any platform where threads are possible. BoringSSL
180 // maintainers will not provide support for any consumers that do so. Changes
181 // which break such unsupported configurations will not be reverted.
182 #if !defined(OPENSSL_NO_THREADS_CORRUPT_MEMORY_AND_LEAK_SECRETS_IF_THREADED)
183 #define OPENSSL_THREADS
184 #endif
185 
186 #define OPENSSL_IS_BORINGSSL
187 #define OPENSSL_VERSION_NUMBER 0x1010107f
188 #define SSLEAY_VERSION_NUMBER OPENSSL_VERSION_NUMBER
189 
190 // BORINGSSL_API_VERSION is a positive integer that increments as BoringSSL
191 // changes over time. The value itself is not meaningful. It will be incremented
192 // whenever is convenient to coordinate an API change with consumers. This will
193 // not denote any special point in development.
194 //
195 // A consumer may use this symbol in the preprocessor to temporarily build
196 // against multiple revisions of BoringSSL at the same time. It is not
197 // recommended to do so for longer than is necessary.
198 #define BORINGSSL_API_VERSION 16
199 
200 #if defined(BORINGSSL_SHARED_LIBRARY)
201 
202 #if defined(OPENSSL_WINDOWS)
203 
204 #if defined(BORINGSSL_IMPLEMENTATION)
205 #define OPENSSL_EXPORT __declspec(dllexport)
206 #else
207 #define OPENSSL_EXPORT __declspec(dllimport)
208 #endif
209 
210 #else // defined(OPENSSL_WINDOWS)
211 
212 #if defined(BORINGSSL_IMPLEMENTATION)
213 #define OPENSSL_EXPORT __attribute__((visibility("default")))
214 #else
215 #define OPENSSL_EXPORT
216 #endif
217 
218 #endif // defined(OPENSSL_WINDOWS)
219 
220 #else // defined(BORINGSSL_SHARED_LIBRARY)
221 
222 #define OPENSSL_EXPORT
223 
224 #endif // defined(BORINGSSL_SHARED_LIBRARY)
225 
226 
227 #if defined(__GNUC__) || defined(__clang__)
228 // MinGW has two different printf implementations. Ensure the format macro
229 // matches the selected implementation. See
230 // https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/.
231 #if defined(__MINGW_PRINTF_FORMAT)
232 #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) \
233  __attribute__( \
234  (__format__(__MINGW_PRINTF_FORMAT, string_index, first_to_check)))
235 #else
236 #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) \
237  __attribute__((__format__(__printf__, string_index, first_to_check)))
238 #endif
239 #else
240 #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check)
241 #endif
242 
243 // OPENSSL_MSVC_PRAGMA emits a pragma on MSVC and nothing on other compilers.
244 #if defined(_MSC_VER)
245 #define OPENSSL_MSVC_PRAGMA(arg) __pragma(arg)
246 #else
247 #define OPENSSL_MSVC_PRAGMA(arg)
248 #endif
249 
250 #if defined(__GNUC__) || defined(__clang__)
251 #define OPENSSL_UNUSED __attribute__((unused))
252 #else
253 #define OPENSSL_UNUSED
254 #endif
255 
256 // C and C++ handle inline functions differently. In C++, an inline function is
257 // defined in just the header file, potentially emitted in multiple compilation
258 // units (in cases the compiler did not inline), but each copy must be identical
259 // to satsify ODR. In C, a non-static inline must be manually emitted in exactly
260 // one compilation unit with a separate extern inline declaration.
261 //
262 // In both languages, exported inline functions referencing file-local symbols
263 // are problematic. C forbids this altogether (though GCC and Clang seem not to
264 // enforce it). It works in C++, but ODR requires the definitions be identical,
265 // including all names in the definitions resolving to the "same entity". In
266 // practice, this is unlikely to be a problem, but an inline function that
267 // returns a pointer to a file-local symbol
268 // could compile oddly.
269 //
270 // Historically, we used static inline in headers. However, to satisfy ODR, use
271 // plain inline in C++, to allow inline consumer functions to call our header
272 // functions. Plain inline would also work better with C99 inline, but that is
273 // not used much in practice, extern inline is tedious, and there are conflicts
274 // with the old gnu89 model:
275 // https://stackoverflow.com/questions/216510/extern-inline
276 #if defined(__cplusplus)
277 #define OPENSSL_INLINE inline
278 #else
279 // Add OPENSSL_UNUSED so that, should an inline function be emitted via macro
280 // (e.g. a |STACK_OF(T)| implementation) in a source file without tripping
281 // clang's -Wunused-function.
282 #define OPENSSL_INLINE static inline OPENSSL_UNUSED
283 #endif
284 
285 #if defined(BORINGSSL_UNSAFE_FUZZER_MODE) && \
286  !defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE)
287 #define BORINGSSL_UNSAFE_DETERMINISTIC_MODE
288 #endif
289 
290 #if defined(__has_feature)
291 #if __has_feature(address_sanitizer)
292 #define OPENSSL_ASAN
293 #endif
294 #if __has_feature(thread_sanitizer)
295 #define OPENSSL_TSAN
296 #endif
297 #if __has_feature(memory_sanitizer)
298 #define OPENSSL_MSAN
299 #define OPENSSL_ASM_INCOMPATIBLE
300 #endif
301 #endif
302 
303 #if defined(OPENSSL_ASM_INCOMPATIBLE)
304 #undef OPENSSL_ASM_INCOMPATIBLE
305 #if !defined(OPENSSL_NO_ASM)
306 #define OPENSSL_NO_ASM
307 #endif
308 #endif // OPENSSL_ASM_INCOMPATIBLE
309 
310 #if defined(__cplusplus)
311 // enums can be predeclared, but only in C++ and only if given an explicit type.
312 // C doesn't support setting an explicit type for enums thus a #define is used
313 // to do this only for C++. However, the ABI type between C and C++ need to have
314 // equal sizes, which is confirmed in a unittest.
315 #define BORINGSSL_ENUM_INT : int
316 enum ssl_early_data_reason_t BORINGSSL_ENUM_INT;
317 enum ssl_encryption_level_t BORINGSSL_ENUM_INT;
318 enum ssl_private_key_result_t BORINGSSL_ENUM_INT;
319 enum ssl_renegotiate_mode_t BORINGSSL_ENUM_INT;
320 enum ssl_select_cert_result_t BORINGSSL_ENUM_INT;
321 enum ssl_select_cert_result_t BORINGSSL_ENUM_INT;
322 enum ssl_ticket_aead_result_t BORINGSSL_ENUM_INT;
323 enum ssl_verify_result_t BORINGSSL_ENUM_INT;
324 #else
325 #define BORINGSSL_ENUM_INT
326 #endif
327 
328 // CRYPTO_THREADID is a dummy value.
329 typedef int CRYPTO_THREADID;
330 
331 // An |ASN1_NULL| is an opaque type. asn1.h represents the ASN.1 NULL value as
332 // an opaque, non-NULL |ASN1_NULL*| pointer.
333 typedef struct asn1_null_st ASN1_NULL;
334 
335 typedef int ASN1_BOOLEAN;
336 typedef struct ASN1_ITEM_st ASN1_ITEM;
338 typedef struct asn1_pctx_st ASN1_PCTX;
350 typedef struct asn1_string_st ASN1_TIME;
355 typedef struct asn1_type_st ASN1_TYPE;
358 typedef struct DIST_POINT_st DIST_POINT;
359 typedef struct DSA_SIG_st DSA_SIG;
370 typedef struct X509_algor_st X509_ALGOR;
371 typedef struct X509_crl_st X509_CRL;
373 typedef struct X509_info_st X509_INFO;
375 typedef struct X509_name_st X509_NAME;
377 typedef struct X509_req_st X509_REQ;
378 typedef struct X509_sig_st X509_SIG;
379 typedef struct bignum_ctx BN_CTX;
380 typedef struct bignum_st BIGNUM;
381 typedef struct bio_method_st BIO_METHOD;
382 typedef struct bio_st BIO;
384 typedef struct bn_gencb_st BN_GENCB;
386 typedef struct buf_mem_st BUF_MEM;
387 typedef struct cbb_st CBB;
388 typedef struct cbs_st CBS;
389 typedef struct cmac_ctx_st CMAC_CTX;
390 typedef struct conf_st CONF;
391 typedef struct conf_value_st CONF_VALUE;
394 typedef struct dh_st DH;
395 typedef struct dsa_st DSA;
396 typedef struct ec_group_st EC_GROUP;
397 typedef struct ec_key_st EC_KEY;
398 typedef struct ec_point_st EC_POINT;
400 typedef struct ecdsa_sig_st ECDSA_SIG;
401 typedef struct engine_st ENGINE;
402 typedef struct env_md_ctx_st EVP_MD_CTX;
403 typedef struct env_md_st EVP_MD;
404 typedef struct evp_aead_st EVP_AEAD;
406 typedef struct evp_cipher_st EVP_CIPHER;
416 typedef struct evp_pkey_st EVP_PKEY;
417 typedef struct hmac_ctx_st HMAC_CTX;
418 typedef struct md4_state_st MD4_CTX;
419 typedef struct md5_state_st MD5_CTX;
420 typedef struct ossl_init_settings_st OPENSSL_INIT_SETTINGS;
421 typedef struct pkcs12_st PKCS12;
423 typedef struct private_key_st X509_PKEY;
424 typedef struct rand_meth_st RAND_METHOD;
425 typedef struct rc4_key_st RC4_KEY;
426 typedef struct rsa_meth_st RSA_METHOD;
428 typedef struct rsa_st RSA;
431 typedef struct sha_state_st SHA_CTX;
432 typedef struct spake2_ctx_st SPAKE2_CTX;
434 typedef struct ssl_cipher_st SSL_CIPHER;
435 typedef struct ssl_ctx_st SSL_CTX;
438 typedef struct ssl_method_st SSL_METHOD;
442 typedef struct ssl_st SSL;
444 typedef struct st_ERR_FNS ERR_FNS;
449 typedef struct v3_ext_ctx X509V3_CTX;
457 typedef struct x509_st X509;
459 typedef struct x509_store_st X509_STORE;
460 typedef struct x509_trust_st X509_TRUST;
461 
462 typedef void *OPENSSL_BLOCK;
463 
464 
465 #if defined(__cplusplus)
466 } // extern C
467 #elif !defined(BORINGSSL_NO_CXX)
468 #define BORINGSSL_NO_CXX
469 #endif
470 
471 #if defined(BORINGSSL_PREFIX)
472 #define BSSL_NAMESPACE_BEGIN \
473  namespace bssl { \
474  inline namespace BORINGSSL_PREFIX {
475 #define BSSL_NAMESPACE_END \
476  } \
477  }
478 #else
479 #define BSSL_NAMESPACE_BEGIN namespace bssl {
480 #define BSSL_NAMESPACE_END }
481 #endif
482 
483 // MSVC doesn't set __cplusplus to 201103 to indicate C++11 support (see
484 // https://connect.microsoft.com/VisualStudio/feedback/details/763051/a-value-of-predefined-macro-cplusplus-is-still-199711l)
485 // so MSVC is just assumed to support C++11.
486 #if !defined(BORINGSSL_NO_CXX) && __cplusplus < 201103L && !defined(_MSC_VER)
487 #define BORINGSSL_NO_CXX
488 #endif
489 
490 #if !defined(BORINGSSL_NO_CXX)
491 
492 extern "C++" {
493 
494 #include <memory>
495 
496 // STLPort, used by some Android consumers, not have std::unique_ptr.
497 #if defined(_STLPORT_VERSION)
498 #define BORINGSSL_NO_CXX
499 #endif
500 
501 } // extern C++
502 #endif // !BORINGSSL_NO_CXX
503 
504 #if defined(BORINGSSL_NO_CXX)
505 
506 #define BORINGSSL_MAKE_DELETER(type, deleter)
507 #define BORINGSSL_MAKE_UP_REF(type, up_ref_func)
508 
509 #else
510 
511 extern "C++" {
512 
514 
515 namespace internal {
516 
517 // The Enable parameter is ignored and only exists so specializations can use
518 // SFINAE.
519 template <typename T, typename Enable = void>
520 struct DeleterImpl {};
521 
522 template <typename T>
523 struct Deleter {
524  void operator()(T *ptr) {
525  // Rather than specialize Deleter for each type, we specialize
526  // DeleterImpl. This allows bssl::UniquePtr<T> to be used while only
527  // including base.h as long as the destructor is not emitted. This matches
528  // std::unique_ptr's behavior on forward-declared types.
529  //
530  // DeleterImpl itself is specialized in the corresponding module's header
531  // and must be included to release an object. If not included, the compiler
532  // will error that DeleterImpl<T> does not have a method Free.
533  DeleterImpl<T>::Free(ptr);
534  }
535 };
536 
537 template <typename T, typename CleanupRet, void (*init)(T *),
538  CleanupRet (*cleanup)(T *)>
539 class StackAllocated {
540  public:
541  StackAllocated() { init(&ctx_); }
542  ~StackAllocated() { cleanup(&ctx_); }
543 
544  StackAllocated(const StackAllocated &) = delete;
545  StackAllocated& operator=(const StackAllocated &) = delete;
546 
547  T *get() { return &ctx_; }
548  const T *get() const { return &ctx_; }
549 
550  T *operator->() { return &ctx_; }
551  const T *operator->() const { return &ctx_; }
552 
553  void Reset() {
554  cleanup(&ctx_);
555  init(&ctx_);
556  }
557 
558  private:
559  T ctx_;
560 };
561 
562 template <typename T, typename CleanupRet, void (*init)(T *),
563  CleanupRet (*cleanup)(T *), void (*move)(T *, T *)>
564 class StackAllocatedMovable {
565  public:
566  StackAllocatedMovable() { init(&ctx_); }
567  ~StackAllocatedMovable() { cleanup(&ctx_); }
568 
569  StackAllocatedMovable(StackAllocatedMovable &&other) {
570  init(&ctx_);
571  move(&ctx_, &other.ctx_);
572  }
573  StackAllocatedMovable &operator=(StackAllocatedMovable &&other) {
574  move(&ctx_, &other.ctx_);
575  return *this;
576  }
577 
578  T *get() { return &ctx_; }
579  const T *get() const { return &ctx_; }
580 
581  T *operator->() { return &ctx_; }
582  const T *operator->() const { return &ctx_; }
583 
584  void Reset() {
585  cleanup(&ctx_);
586  init(&ctx_);
587  }
588 
589  private:
590  T ctx_;
591 };
592 
593 } // namespace internal
594 
595 #define BORINGSSL_MAKE_DELETER(type, deleter) \
596  namespace internal { \
597  template <> \
598  struct DeleterImpl<type> { \
599  static void Free(type *ptr) { deleter(ptr); } \
600  }; \
601  }
602 
603 // Holds ownership of heap-allocated BoringSSL structures. Sample usage:
604 // bssl::UniquePtr<RSA> rsa(RSA_new());
605 // bssl::UniquePtr<BIO> bio(BIO_new(BIO_s_mem()));
606 template <typename T>
607 using UniquePtr = std::unique_ptr<T, internal::Deleter<T>>;
608 
609 #define BORINGSSL_MAKE_UP_REF(type, up_ref_func) \
610  inline UniquePtr<type> UpRef(type *v) { \
611  if (v != nullptr) { \
612  up_ref_func(v); \
613  } \
614  return UniquePtr<type>(v); \
615  } \
616  \
617  inline UniquePtr<type> UpRef(const UniquePtr<type> &ptr) { \
618  return UpRef(ptr.get()); \
619  }
620 
622 
623 } // extern C++
624 
625 #endif // !BORINGSSL_NO_CXX
626 
627 #endif // OPENSSL_HEADER_BASE_H
bio_method_st
Definition: bio.h:808
BASIC_CONSTRAINTS_st
Definition: x509v3.h:157
ptr
char * ptr
Definition: abseil-cpp/absl/base/internal/low_level_alloc_test.cc:45
X509_pubkey_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:82
ssl_cipher_st
Definition: third_party/boringssl-with-bazel/src/ssl/internal.h:520
Netscape_spki_st
Definition: x509.h:308
X509_POLICY_LEVEL_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h:214
init
const char * init
Definition: upb/upb/bindings/lua/main.c:49
opensslconf.h
cbs_st
Definition: bytestring.h:39
get
absl::string_view get(const Cont &c)
Definition: abseil-cpp/absl/strings/str_replace_test.cc:185
v3_ext_ctx
Definition: x509v3.h:136
cleanup
void cleanup(void)
Definition: bloaty/third_party/zlib/examples/enough.c:182
bio_st
Definition: bio.h:822
env_md_st
Definition: third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h:67
ASN1_BOOLEAN
int ASN1_BOOLEAN
Definition: base.h:335
pkcs12_st
Definition: pkcs8_x509.c:782
boringssl_prefix_symbols.h
evp_hpke_kem_st
Definition: hpke.c:38
evp_hpke_ctx_st
Definition: hpke.h:309
X509_POLICY_NODE_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h:205
x509_crl_method_st
Definition: x_crl.c:80
X509_sig_st
Definition: x_sig.c:64
x509_revoked_st
Definition: x509.h:252
ssl_private_key_method_st
Definition: ssl.h:1248
evp_hpke_key_st
Definition: hpke.h:319
md5_state_st
Definition: md5.h:97
crypto_buffer_st
Definition: third_party/boringssl-with-bazel/src/crypto/pool/internal.h:31
bn_mont_ctx_st
Definition: bn.h:984
ctx_
ClientContext ctx_
Definition: client_interceptors_end2end_test.cc:289
bignum_ctx
Definition: ctx.c:91
BORINGSSL_ENUM_INT
#define BORINGSSL_ENUM_INT
Definition: base.h:325
X509_extension_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:117
evp_cipher_ctx_st
Definition: cipher.h:536
ssl_ctx_st
Definition: third_party/boringssl-with-bazel/src/ssl/internal.h:3404
evp_hpke_kdf_st
Definition: hpke.c:57
DIST_POINT_st
Definition: x509v3.h:246
T
#define T(upbtypeconst, upbtype, ctype, default_value)
ASN1_PCTX
struct asn1_pctx_st ASN1_PCTX
Definition: base.h:338
env_md_ctx_st
Definition: digest.h:306
asn1_object_st
Definition: third_party/boringssl-with-bazel/src/crypto/asn1/internal.h:102
ERR_FNS
struct st_ERR_FNS ERR_FNS
Definition: base.h:444
rand_meth_st
Definition: rand.h:88
rc4_key_st
Definition: rc4.h:70
blake2b_state_st
Definition: blake2.h:28
X509_POLICY_TREE_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h:228
X509_VERIFY_PARAM_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:217
evp_pkey_ctx_st
Definition: third_party/boringssl-with-bazel/src/crypto/evp/internal.h:182
evp_cipher_st
Definition: cipher.h:585
ASN1_ITEM_st
Definition: asn1t.h:459
mox.Reset
def Reset(*args)
Definition: bloaty/third_party/protobuf/python/mox.py:257
evp_pkey_st
Definition: evp.h:1046
absl::move
constexpr absl::remove_reference_t< T > && move(T &&t) noexcept
Definition: abseil-cpp/absl/utility/utility.h:221
conf_st
Definition: conf.c:76
ssl_quic_method_st
Definition: ssl.h:3289
ssl_st
Definition: third_party/boringssl-with-bazel/src/ssl/internal.h:3698
sha_state_st
Definition: sha.h:99
ssl_early_callback_ctx
Definition: ssl.h:4186
AUTHORITY_KEYID_st
Definition: x509v3.h:257
X509_crl_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:195
BSSL_NAMESPACE_END
#define BSSL_NAMESPACE_END
Definition: base.h:480
x509_trust_st
Definition: x509.h:146
evp_pkey_method_st
Definition: third_party/boringssl-with-bazel/src/crypto/evp/internal.h:197
X509_req_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:175
x509_store_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:270
ISSUING_DIST_POINT_st
Definition: x509v3.h:334
cmac_ctx_st
Definition: cmac.c:61
x509_lookup_method_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:249
x509_object_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:237
trust_token_st
Definition: trust_token.h:54
x509_cert_aux_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:109
DSA_SIG_st
Definition: dsa.h:181
trust_token_issuer_st
Definition: third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h:280
x509_attributes_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:104
NAME_CONSTRAINTS_st
Definition: x509v3.h:310
grpc_core::UniquePtr
std::unique_ptr< T, DefaultDeleteChar > UniquePtr
Definition: src/core/lib/gprpp/memory.h:43
stdint.h
X509_name_entry_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:88
private_key_st
Definition: x509.h:269
is_boringssl.h
bn_gencb_st
Definition: bn.h:656
trust_token_client_st
Definition: third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h:259
ec_key_st
Definition: third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h:723
evp_aead_st
Definition: third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h:77
X509_info_st
Definition: x509.h:287
ssl_session_st
Definition: third_party/boringssl-with-bazel/src/ssl/internal.h:3787
evp_encode_ctx_st
Definition: base64.h:177
X509_algor_st
Definition: x509.h:113
ecdsa_method_st
Definition: ec_key.h:271
sha256_state_st
Definition: sha.h:189
BSSL_NAMESPACE_BEGIN
Definition: trust_token_test.cc:45
x509_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:139
RIPEMD160state_st
Definition: ripemd.h:71
OPENSSL_INIT_SETTINGS
struct ossl_init_settings_st OPENSSL_INIT_SETTINGS
Definition: base.h:420
rsa_pss_params_st
Definition: x509.h:1844
x509_lookup_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:300
bignum_st
Definition: bn.h:957
ec_point_st
Definition: third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h:615
hmac_ctx_st
Definition: hmac.h:158
ec_group_st
Definition: third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h:573
dsa_st
Definition: dsa.h:398
spake2_ctx_st
Definition: third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h:127
ssl_method_st
Definition: third_party/boringssl-with-bazel/src/ssl/internal.h:3392
srtp_protection_profile_st
Definition: ssl.h:3058
rsa_meth_st
Definition: rsa.h:689
crypto_buffer_pool_st
Definition: third_party/boringssl-with-bazel/src/crypto/pool/internal.h:39
OPENSSL_BLOCK
void * OPENSSL_BLOCK
Definition: base.h:462
CRYPTO_THREADID
int CRYPTO_THREADID
Definition: base.h:329
engine_st
Definition: engine.c:29
internal
Definition: benchmark/test/output_test_helper.cc:20
md4_state_st
Definition: md4.h:96
evp_pkey_asn1_method_st
Definition: third_party/boringssl-with-bazel/src/crypto/evp/internal.h:69
dh_st
Definition: dh.h:305
buf_mem_st
Definition: buf.h:71
Netscape_spkac_st
Definition: x509.h:303
rsa_st
Definition: rsa.h:732
cleanup
Definition: cleanup.py:1
asn1_type_st
Definition: asn1.h:1481
X509_POLICY_CACHE_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h:180
ssl_ticket_aead_method_st
Definition: ssl.h:2241
pkcs8_priv_key_info_st
Definition: third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h:66
ssl_ech_keys_st
Definition: third_party/boringssl-with-bazel/src/ssl/internal.h:3940
ecdsa_sig_st
Definition: ecdsa.h:105
evp_hpke_aead_st
Definition: hpke.c:63
X509_name_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:95
x509_store_ctx_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:312
trust_token_method_st
Definition: third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h:176
asn1_string_st
Definition: asn1.h:543
sha512_state_st
Definition: sha.h:256
conf_value_st
Definition: conf.h:82
ASN1_NULL
struct asn1_null_st ASN1_NULL
Definition: base.h:333
cbb_st
Definition: bytestring.h:375


grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:58:35