crypt.hpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. // crypt.hpp --------------------------------------------------------------//
  2. // Copyright 2014 Antony Polukhin
  3. // Copyright 2015 Andrey Semashev
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // See http://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_DETAIL_WINAPI_CRYPT_HPP
  7. #define BOOST_DETAIL_WINAPI_CRYPT_HPP
  8. #include <boost/detail/winapi/basic_types.hpp>
  9. #include <boost/detail/winapi/detail/cast_ptr.hpp>
  10. #if defined( BOOST_USE_WINDOWS_H )
  11. // This header is not always included as part of windows.h
  12. #include <wincrypt.h>
  13. #endif
  14. #ifdef BOOST_HAS_PRAGMA_ONCE
  15. #pragma once
  16. #endif
  17. #if !defined( BOOST_USE_WINDOWS_H )
  18. namespace boost { namespace detail { namespace winapi {
  19. typedef ULONG_PTR_ HCRYPTPROV_;
  20. }}}
  21. // Some versions of MinGW (including the latest ones) contain buggy declarations of CryptEnumProvidersA and CryptEnumProvidersW.
  22. // We cannot detect those broken versions, and we can't include the system header because it's incomplete.
  23. // So below we duplicate the broken declarations here and work around the problem with cast_ptr. These declarations
  24. // will have to be removed when MinGW is fixed.
  25. extern "C" {
  26. #if !defined( BOOST_NO_ANSI_APIS )
  27. #if !defined( BOOST_WINAPI_IS_MINGW ) || !defined( UNICODE )
  28. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  29. CryptEnumProvidersA(
  30. boost::detail::winapi::DWORD_ dwIndex,
  31. boost::detail::winapi::DWORD_ *pdwReserved,
  32. boost::detail::winapi::DWORD_ dwFlags,
  33. boost::detail::winapi::DWORD_ *pdwProvType,
  34. boost::detail::winapi::LPSTR_ szProvName,
  35. boost::detail::winapi::DWORD_ *pcbProvName);
  36. #else
  37. // Broken declaration in MinGW
  38. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  39. CryptEnumProvidersA(
  40. boost::detail::winapi::DWORD_ dwIndex,
  41. boost::detail::winapi::DWORD_ *pdwReserved,
  42. boost::detail::winapi::DWORD_ dwFlags,
  43. boost::detail::winapi::DWORD_ *pdwProvType,
  44. boost::detail::winapi::LPWSTR_ szProvName,
  45. boost::detail::winapi::DWORD_ *pcbProvName);
  46. #endif
  47. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  48. CryptAcquireContextA(
  49. boost::detail::winapi::HCRYPTPROV_ *phProv,
  50. boost::detail::winapi::LPCSTR_ pszContainer,
  51. boost::detail::winapi::LPCSTR_ pszProvider,
  52. boost::detail::winapi::DWORD_ dwProvType,
  53. boost::detail::winapi::DWORD_ dwFlags);
  54. #endif // !defined( BOOST_NO_ANSI_APIS )
  55. #if !defined( BOOST_WINAPI_IS_MINGW ) || defined( UNICODE )
  56. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  57. CryptEnumProvidersW(
  58. boost::detail::winapi::DWORD_ dwIndex,
  59. boost::detail::winapi::DWORD_ *pdwReserved,
  60. boost::detail::winapi::DWORD_ dwFlags,
  61. boost::detail::winapi::DWORD_ *pdwProvType,
  62. boost::detail::winapi::LPWSTR_ szProvName,
  63. boost::detail::winapi::DWORD_ *pcbProvName);
  64. #else
  65. // Broken declaration in MinGW
  66. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  67. CryptEnumProvidersW(
  68. boost::detail::winapi::DWORD_ dwIndex,
  69. boost::detail::winapi::DWORD_ *pdwReserved,
  70. boost::detail::winapi::DWORD_ dwFlags,
  71. boost::detail::winapi::DWORD_ *pdwProvType,
  72. boost::detail::winapi::LPSTR_ szProvName,
  73. boost::detail::winapi::DWORD_ *pcbProvName);
  74. #endif
  75. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  76. CryptAcquireContextW(
  77. boost::detail::winapi::HCRYPTPROV_ *phProv,
  78. boost::detail::winapi::LPCWSTR_ szContainer,
  79. boost::detail::winapi::LPCWSTR_ szProvider,
  80. boost::detail::winapi::DWORD_ dwProvType,
  81. boost::detail::winapi::DWORD_ dwFlags);
  82. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  83. CryptGenRandom(
  84. boost::detail::winapi::HCRYPTPROV_ hProv,
  85. boost::detail::winapi::DWORD_ dwLen,
  86. boost::detail::winapi::BYTE_ *pbBuffer);
  87. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  88. CryptReleaseContext(
  89. boost::detail::winapi::HCRYPTPROV_ hProv,
  90. boost::detail::winapi::DWORD_ dwFlags);
  91. }
  92. #endif // !defined( BOOST_USE_WINDOWS_H )
  93. namespace boost {
  94. namespace detail {
  95. namespace winapi {
  96. #if defined( BOOST_USE_WINDOWS_H )
  97. typedef ::HCRYPTPROV HCRYPTPROV_;
  98. const DWORD_ PROV_RSA_FULL_ = PROV_RSA_FULL;
  99. const DWORD_ CRYPT_VERIFYCONTEXT_ = CRYPT_VERIFYCONTEXT;
  100. const DWORD_ CRYPT_NEWKEYSET_ = CRYPT_NEWKEYSET;
  101. const DWORD_ CRYPT_DELETEKEYSET_ = CRYPT_DELETEKEYSET;
  102. const DWORD_ CRYPT_MACHINE_KEYSET_ = CRYPT_MACHINE_KEYSET;
  103. const DWORD_ CRYPT_SILENT_ = CRYPT_SILENT;
  104. #else
  105. const DWORD_ PROV_RSA_FULL_ = 1;
  106. const DWORD_ CRYPT_VERIFYCONTEXT_ = 0xF0000000;
  107. const DWORD_ CRYPT_NEWKEYSET_ = 8;
  108. const DWORD_ CRYPT_DELETEKEYSET_ = 16;
  109. const DWORD_ CRYPT_MACHINE_KEYSET_ = 32;
  110. const DWORD_ CRYPT_SILENT_ = 64;
  111. #endif
  112. #if !defined( BOOST_NO_ANSI_APIS )
  113. using ::CryptEnumProvidersA;
  114. using ::CryptAcquireContextA;
  115. #endif
  116. using ::CryptEnumProvidersW;
  117. using ::CryptAcquireContextW;
  118. using ::CryptGenRandom;
  119. using ::CryptReleaseContext;
  120. #if !defined( BOOST_NO_ANSI_APIS )
  121. BOOST_FORCEINLINE BOOL_ crypt_enum_providers(
  122. DWORD_ dwIndex,
  123. DWORD_ *pdwReserved,
  124. DWORD_ dwFlags,
  125. DWORD_ *pdwProvType,
  126. LPSTR_ szProvName,
  127. DWORD_ *pcbProvName)
  128. {
  129. return ::CryptEnumProvidersA(dwIndex, pdwReserved, dwFlags, pdwProvType, winapi::detail::cast_ptr(szProvName), pcbProvName);
  130. }
  131. BOOST_FORCEINLINE BOOL_ crypt_acquire_context(
  132. HCRYPTPROV_ *phProv,
  133. LPCSTR_ pszContainer,
  134. LPCSTR_ pszProvider,
  135. DWORD_ dwProvType,
  136. DWORD_ dwFlags)
  137. {
  138. return ::CryptAcquireContextA(phProv, pszContainer, pszProvider, dwProvType, dwFlags);
  139. }
  140. #endif
  141. BOOST_FORCEINLINE BOOL_ crypt_enum_providers(
  142. DWORD_ dwIndex,
  143. DWORD_ *pdwReserved,
  144. DWORD_ dwFlags,
  145. DWORD_ *pdwProvType,
  146. LPWSTR_ szProvName,
  147. DWORD_ *pcbProvName)
  148. {
  149. return ::CryptEnumProvidersW(dwIndex, pdwReserved, dwFlags, pdwProvType, winapi::detail::cast_ptr(szProvName), pcbProvName);
  150. }
  151. BOOST_FORCEINLINE BOOL_ crypt_acquire_context(
  152. HCRYPTPROV_ *phProv,
  153. LPCWSTR_ szContainer,
  154. LPCWSTR_ szProvider,
  155. DWORD_ dwProvType,
  156. DWORD_ dwFlags)
  157. {
  158. return ::CryptAcquireContextW(phProv, szContainer, szProvider, dwProvType, dwFlags);
  159. }
  160. }
  161. }
  162. }
  163. #endif // BOOST_DETAIL_WINAPI_CRYPT_HPP