CMS 3D CMS Logo

openssl_init.cc
Go to the documentation of this file.
2 #include <mutex>
3 
4 namespace cms {
5  void openssl_init() {
6  static std::once_flag flag;
7  std::call_once(flag, []() {
8 #if OPENSSL_API_COMPAT < 0x10100000L
9  OpenSSL_add_all_digests();
10 #else
11  OPENSSL_init_crypto();
12 #endif
13  });
14  }
15 } // namespace cms
void openssl_init()
Definition: openssl_init.cc:5
Namespace of DDCMS conversion namespace.