context.hpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  1. //
  2. // ssl/context.hpp
  3. // ~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_SSL_CONTEXT_HPP
  11. #define BOOST_ASIO_SSL_CONTEXT_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #if defined(BOOST_ASIO_ENABLE_OLD_SSL)
  17. # include <boost/asio/ssl/basic_context.hpp>
  18. # include <boost/asio/ssl/context_service.hpp>
  19. #else // defined(BOOST_ASIO_ENABLE_OLD_SSL)
  20. # include <string>
  21. # include <boost/asio/buffer.hpp>
  22. # include <boost/asio/io_service.hpp>
  23. # include <boost/asio/ssl/context_base.hpp>
  24. # include <boost/asio/ssl/detail/openssl_types.hpp>
  25. # include <boost/asio/ssl/detail/openssl_init.hpp>
  26. # include <boost/asio/ssl/detail/password_callback.hpp>
  27. # include <boost/asio/ssl/detail/verify_callback.hpp>
  28. # include <boost/asio/ssl/verify_mode.hpp>
  29. #endif // defined(BOOST_ASIO_ENABLE_OLD_SSL)
  30. #include <boost/asio/detail/push_options.hpp>
  31. namespace boost {
  32. namespace asio {
  33. namespace ssl {
  34. #if defined(BOOST_ASIO_ENABLE_OLD_SSL)
  35. /// Typedef for the typical usage of context.
  36. typedef basic_context<context_service> context;
  37. #else // defined(BOOST_ASIO_ENABLE_OLD_SSL)
  38. class context
  39. : public context_base,
  40. private noncopyable
  41. {
  42. public:
  43. /// The native handle type of the SSL context.
  44. typedef SSL_CTX* native_handle_type;
  45. /// (Deprecated: Use native_handle_type.) The native type of the SSL context.
  46. typedef SSL_CTX* impl_type;
  47. /// Constructor.
  48. BOOST_ASIO_DECL explicit context(method m);
  49. /// Deprecated constructor taking a reference to an io_service object.
  50. BOOST_ASIO_DECL context(boost::asio::io_service&, method m);
  51. #if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
  52. /// Move-construct a context from another.
  53. /**
  54. * This constructor moves an SSL context from one object to another.
  55. *
  56. * @param other The other context object from which the move will occur.
  57. *
  58. * @note Following the move, the following operations only are valid for the
  59. * moved-from object:
  60. * @li Destruction.
  61. * @li As a target for move-assignment.
  62. */
  63. BOOST_ASIO_DECL context(context&& other);
  64. /// Move-assign a context from another.
  65. /**
  66. * This assignment operator moves an SSL context from one object to another.
  67. *
  68. * @param other The other context object from which the move will occur.
  69. *
  70. * @note Following the move, the following operations only are valid for the
  71. * moved-from object:
  72. * @li Destruction.
  73. * @li As a target for move-assignment.
  74. */
  75. BOOST_ASIO_DECL context& operator=(context&& other);
  76. #endif // defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
  77. /// Destructor.
  78. BOOST_ASIO_DECL ~context();
  79. /// Get the underlying implementation in the native type.
  80. /**
  81. * This function may be used to obtain the underlying implementation of the
  82. * context. This is intended to allow access to context functionality that is
  83. * not otherwise provided.
  84. */
  85. BOOST_ASIO_DECL native_handle_type native_handle();
  86. /// (Deprecated: Use native_handle().) Get the underlying implementation in
  87. /// the native type.
  88. /**
  89. * This function may be used to obtain the underlying implementation of the
  90. * context. This is intended to allow access to context functionality that is
  91. * not otherwise provided.
  92. */
  93. BOOST_ASIO_DECL impl_type impl();
  94. /// Clear options on the context.
  95. /**
  96. * This function may be used to configure the SSL options used by the context.
  97. *
  98. * @param o A bitmask of options. The available option values are defined in
  99. * the context_base class. The specified options, if currently enabled on the
  100. * context, are cleared.
  101. *
  102. * @throws boost::system::system_error Thrown on failure.
  103. *
  104. * @note Calls @c SSL_CTX_clear_options.
  105. */
  106. BOOST_ASIO_DECL void clear_options(options o);
  107. /// Clear options on the context.
  108. /**
  109. * This function may be used to configure the SSL options used by the context.
  110. *
  111. * @param o A bitmask of options. The available option values are defined in
  112. * the context_base class. The specified options, if currently enabled on the
  113. * context, are cleared.
  114. *
  115. * @param ec Set to indicate what error occurred, if any.
  116. *
  117. * @note Calls @c SSL_CTX_clear_options.
  118. */
  119. BOOST_ASIO_DECL boost::system::error_code clear_options(options o,
  120. boost::system::error_code& ec);
  121. /// Set options on the context.
  122. /**
  123. * This function may be used to configure the SSL options used by the context.
  124. *
  125. * @param o A bitmask of options. The available option values are defined in
  126. * the context_base class. The options are bitwise-ored with any existing
  127. * value for the options.
  128. *
  129. * @throws boost::system::system_error Thrown on failure.
  130. *
  131. * @note Calls @c SSL_CTX_set_options.
  132. */
  133. BOOST_ASIO_DECL void set_options(options o);
  134. /// Set options on the context.
  135. /**
  136. * This function may be used to configure the SSL options used by the context.
  137. *
  138. * @param o A bitmask of options. The available option values are defined in
  139. * the context_base class. The options are bitwise-ored with any existing
  140. * value for the options.
  141. *
  142. * @param ec Set to indicate what error occurred, if any.
  143. *
  144. * @note Calls @c SSL_CTX_set_options.
  145. */
  146. BOOST_ASIO_DECL boost::system::error_code set_options(options o,
  147. boost::system::error_code& ec);
  148. /// Set the peer verification mode.
  149. /**
  150. * This function may be used to configure the peer verification mode used by
  151. * the context.
  152. *
  153. * @param v A bitmask of peer verification modes. See @ref verify_mode for
  154. * available values.
  155. *
  156. * @throws boost::system::system_error Thrown on failure.
  157. *
  158. * @note Calls @c SSL_CTX_set_verify.
  159. */
  160. BOOST_ASIO_DECL void set_verify_mode(verify_mode v);
  161. /// Set the peer verification mode.
  162. /**
  163. * This function may be used to configure the peer verification mode used by
  164. * the context.
  165. *
  166. * @param v A bitmask of peer verification modes. See @ref verify_mode for
  167. * available values.
  168. *
  169. * @param ec Set to indicate what error occurred, if any.
  170. *
  171. * @note Calls @c SSL_CTX_set_verify.
  172. */
  173. BOOST_ASIO_DECL boost::system::error_code set_verify_mode(
  174. verify_mode v, boost::system::error_code& ec);
  175. /// Set the peer verification depth.
  176. /**
  177. * This function may be used to configure the maximum verification depth
  178. * allowed by the context.
  179. *
  180. * @param depth Maximum depth for the certificate chain verification that
  181. * shall be allowed.
  182. *
  183. * @throws boost::system::system_error Thrown on failure.
  184. *
  185. * @note Calls @c SSL_CTX_set_verify_depth.
  186. */
  187. BOOST_ASIO_DECL void set_verify_depth(int depth);
  188. /// Set the peer verification depth.
  189. /**
  190. * This function may be used to configure the maximum verification depth
  191. * allowed by the context.
  192. *
  193. * @param depth Maximum depth for the certificate chain verification that
  194. * shall be allowed.
  195. *
  196. * @param ec Set to indicate what error occurred, if any.
  197. *
  198. * @note Calls @c SSL_CTX_set_verify_depth.
  199. */
  200. BOOST_ASIO_DECL boost::system::error_code set_verify_depth(
  201. int depth, boost::system::error_code& ec);
  202. /// Set the callback used to verify peer certificates.
  203. /**
  204. * This function is used to specify a callback function that will be called
  205. * by the implementation when it needs to verify a peer certificate.
  206. *
  207. * @param callback The function object to be used for verifying a certificate.
  208. * The function signature of the handler must be:
  209. * @code bool verify_callback(
  210. * bool preverified, // True if the certificate passed pre-verification.
  211. * verify_context& ctx // The peer certificate and other context.
  212. * ); @endcode
  213. * The return value of the callback is true if the certificate has passed
  214. * verification, false otherwise.
  215. *
  216. * @throws boost::system::system_error Thrown on failure.
  217. *
  218. * @note Calls @c SSL_CTX_set_verify.
  219. */
  220. template <typename VerifyCallback>
  221. void set_verify_callback(VerifyCallback callback);
  222. /// Set the callback used to verify peer certificates.
  223. /**
  224. * This function is used to specify a callback function that will be called
  225. * by the implementation when it needs to verify a peer certificate.
  226. *
  227. * @param callback The function object to be used for verifying a certificate.
  228. * The function signature of the handler must be:
  229. * @code bool verify_callback(
  230. * bool preverified, // True if the certificate passed pre-verification.
  231. * verify_context& ctx // The peer certificate and other context.
  232. * ); @endcode
  233. * The return value of the callback is true if the certificate has passed
  234. * verification, false otherwise.
  235. *
  236. * @param ec Set to indicate what error occurred, if any.
  237. *
  238. * @note Calls @c SSL_CTX_set_verify.
  239. */
  240. template <typename VerifyCallback>
  241. boost::system::error_code set_verify_callback(VerifyCallback callback,
  242. boost::system::error_code& ec);
  243. /// Load a certification authority file for performing verification.
  244. /**
  245. * This function is used to load one or more trusted certification authorities
  246. * from a file.
  247. *
  248. * @param filename The name of a file containing certification authority
  249. * certificates in PEM format.
  250. *
  251. * @throws boost::system::system_error Thrown on failure.
  252. *
  253. * @note Calls @c SSL_CTX_load_verify_locations.
  254. */
  255. BOOST_ASIO_DECL void load_verify_file(const std::string& filename);
  256. /// Load a certification authority file for performing verification.
  257. /**
  258. * This function is used to load the certificates for one or more trusted
  259. * certification authorities from a file.
  260. *
  261. * @param filename The name of a file containing certification authority
  262. * certificates in PEM format.
  263. *
  264. * @param ec Set to indicate what error occurred, if any.
  265. *
  266. * @note Calls @c SSL_CTX_load_verify_locations.
  267. */
  268. BOOST_ASIO_DECL boost::system::error_code load_verify_file(
  269. const std::string& filename, boost::system::error_code& ec);
  270. /// Add certification authority for performing verification.
  271. /**
  272. * This function is used to add one trusted certification authority
  273. * from a memory buffer.
  274. *
  275. * @param ca The buffer containing the certification authority certificate.
  276. * The certificate must use the PEM format.
  277. *
  278. * @throws boost::system::system_error Thrown on failure.
  279. *
  280. * @note Calls @c SSL_CTX_get_cert_store and @c X509_STORE_add_cert.
  281. */
  282. BOOST_ASIO_DECL void add_certificate_authority(const const_buffer& ca);
  283. /// Add certification authority for performing verification.
  284. /**
  285. * This function is used to add one trusted certification authority
  286. * from a memory buffer.
  287. *
  288. * @param ca The buffer containing the certification authority certificate.
  289. * The certificate must use the PEM format.
  290. *
  291. * @param ec Set to indicate what error occurred, if any.
  292. *
  293. * @note Calls @c SSL_CTX_get_cert_store and @c X509_STORE_add_cert.
  294. */
  295. BOOST_ASIO_DECL boost::system::error_code add_certificate_authority(
  296. const const_buffer& ca, boost::system::error_code& ec);
  297. /// Configures the context to use the default directories for finding
  298. /// certification authority certificates.
  299. /**
  300. * This function specifies that the context should use the default,
  301. * system-dependent directories for locating certification authority
  302. * certificates.
  303. *
  304. * @throws boost::system::system_error Thrown on failure.
  305. *
  306. * @note Calls @c SSL_CTX_set_default_verify_paths.
  307. */
  308. BOOST_ASIO_DECL void set_default_verify_paths();
  309. /// Configures the context to use the default directories for finding
  310. /// certification authority certificates.
  311. /**
  312. * This function specifies that the context should use the default,
  313. * system-dependent directories for locating certification authority
  314. * certificates.
  315. *
  316. * @param ec Set to indicate what error occurred, if any.
  317. *
  318. * @note Calls @c SSL_CTX_set_default_verify_paths.
  319. */
  320. BOOST_ASIO_DECL boost::system::error_code set_default_verify_paths(
  321. boost::system::error_code& ec);
  322. /// Add a directory containing certificate authority files to be used for
  323. /// performing verification.
  324. /**
  325. * This function is used to specify the name of a directory containing
  326. * certification authority certificates. Each file in the directory must
  327. * contain a single certificate. The files must be named using the subject
  328. * name's hash and an extension of ".0".
  329. *
  330. * @param path The name of a directory containing the certificates.
  331. *
  332. * @throws boost::system::system_error Thrown on failure.
  333. *
  334. * @note Calls @c SSL_CTX_load_verify_locations.
  335. */
  336. BOOST_ASIO_DECL void add_verify_path(const std::string& path);
  337. /// Add a directory containing certificate authority files to be used for
  338. /// performing verification.
  339. /**
  340. * This function is used to specify the name of a directory containing
  341. * certification authority certificates. Each file in the directory must
  342. * contain a single certificate. The files must be named using the subject
  343. * name's hash and an extension of ".0".
  344. *
  345. * @param path The name of a directory containing the certificates.
  346. *
  347. * @param ec Set to indicate what error occurred, if any.
  348. *
  349. * @note Calls @c SSL_CTX_load_verify_locations.
  350. */
  351. BOOST_ASIO_DECL boost::system::error_code add_verify_path(
  352. const std::string& path, boost::system::error_code& ec);
  353. /// Use a certificate from a memory buffer.
  354. /**
  355. * This function is used to load a certificate into the context from a buffer.
  356. *
  357. * @param certificate The buffer containing the certificate.
  358. *
  359. * @param format The certificate format (ASN.1 or PEM).
  360. *
  361. * @throws boost::system::system_error Thrown on failure.
  362. *
  363. * @note Calls @c SSL_CTX_use_certificate or SSL_CTX_use_certificate_ASN1.
  364. */
  365. BOOST_ASIO_DECL void use_certificate(
  366. const const_buffer& certificate, file_format format);
  367. /// Use a certificate from a memory buffer.
  368. /**
  369. * This function is used to load a certificate into the context from a buffer.
  370. *
  371. * @param certificate The buffer containing the certificate.
  372. *
  373. * @param format The certificate format (ASN.1 or PEM).
  374. *
  375. * @param ec Set to indicate what error occurred, if any.
  376. *
  377. * @note Calls @c SSL_CTX_use_certificate or SSL_CTX_use_certificate_ASN1.
  378. */
  379. BOOST_ASIO_DECL boost::system::error_code use_certificate(
  380. const const_buffer& certificate, file_format format,
  381. boost::system::error_code& ec);
  382. /// Use a certificate from a file.
  383. /**
  384. * This function is used to load a certificate into the context from a file.
  385. *
  386. * @param filename The name of the file containing the certificate.
  387. *
  388. * @param format The file format (ASN.1 or PEM).
  389. *
  390. * @throws boost::system::system_error Thrown on failure.
  391. *
  392. * @note Calls @c SSL_CTX_use_certificate_file.
  393. */
  394. BOOST_ASIO_DECL void use_certificate_file(
  395. const std::string& filename, file_format format);
  396. /// Use a certificate from a file.
  397. /**
  398. * This function is used to load a certificate into the context from a file.
  399. *
  400. * @param filename The name of the file containing the certificate.
  401. *
  402. * @param format The file format (ASN.1 or PEM).
  403. *
  404. * @param ec Set to indicate what error occurred, if any.
  405. *
  406. * @note Calls @c SSL_CTX_use_certificate_file.
  407. */
  408. BOOST_ASIO_DECL boost::system::error_code use_certificate_file(
  409. const std::string& filename, file_format format,
  410. boost::system::error_code& ec);
  411. /// Use a certificate chain from a memory buffer.
  412. /**
  413. * This function is used to load a certificate chain into the context from a
  414. * buffer.
  415. *
  416. * @param chain The buffer containing the certificate chain. The certificate
  417. * chain must use the PEM format.
  418. *
  419. * @throws boost::system::system_error Thrown on failure.
  420. *
  421. * @note Calls @c SSL_CTX_use_certificate and SSL_CTX_add_extra_chain_cert.
  422. */
  423. BOOST_ASIO_DECL void use_certificate_chain(const const_buffer& chain);
  424. /// Use a certificate chain from a memory buffer.
  425. /**
  426. * This function is used to load a certificate chain into the context from a
  427. * buffer.
  428. *
  429. * @param chain The buffer containing the certificate chain. The certificate
  430. * chain must use the PEM format.
  431. *
  432. * @param ec Set to indicate what error occurred, if any.
  433. *
  434. * @note Calls @c SSL_CTX_use_certificate and SSL_CTX_add_extra_chain_cert.
  435. */
  436. BOOST_ASIO_DECL boost::system::error_code use_certificate_chain(
  437. const const_buffer& chain, boost::system::error_code& ec);
  438. /// Use a certificate chain from a file.
  439. /**
  440. * This function is used to load a certificate chain into the context from a
  441. * file.
  442. *
  443. * @param filename The name of the file containing the certificate. The file
  444. * must use the PEM format.
  445. *
  446. * @throws boost::system::system_error Thrown on failure.
  447. *
  448. * @note Calls @c SSL_CTX_use_certificate_chain_file.
  449. */
  450. BOOST_ASIO_DECL void use_certificate_chain_file(const std::string& filename);
  451. /// Use a certificate chain from a file.
  452. /**
  453. * This function is used to load a certificate chain into the context from a
  454. * file.
  455. *
  456. * @param filename The name of the file containing the certificate. The file
  457. * must use the PEM format.
  458. *
  459. * @param ec Set to indicate what error occurred, if any.
  460. *
  461. * @note Calls @c SSL_CTX_use_certificate_chain_file.
  462. */
  463. BOOST_ASIO_DECL boost::system::error_code use_certificate_chain_file(
  464. const std::string& filename, boost::system::error_code& ec);
  465. /// Use a private key from a memory buffer.
  466. /**
  467. * This function is used to load a private key into the context from a buffer.
  468. *
  469. * @param private_key The buffer containing the private key.
  470. *
  471. * @param format The private key format (ASN.1 or PEM).
  472. *
  473. * @throws boost::system::system_error Thrown on failure.
  474. *
  475. * @note Calls @c SSL_CTX_use_PrivateKey or SSL_CTX_use_PrivateKey_ASN1.
  476. */
  477. BOOST_ASIO_DECL void use_private_key(
  478. const const_buffer& private_key, file_format format);
  479. /// Use a private key from a memory buffer.
  480. /**
  481. * This function is used to load a private key into the context from a buffer.
  482. *
  483. * @param private_key The buffer containing the private key.
  484. *
  485. * @param format The private key format (ASN.1 or PEM).
  486. *
  487. * @param ec Set to indicate what error occurred, if any.
  488. *
  489. * @note Calls @c SSL_CTX_use_PrivateKey or SSL_CTX_use_PrivateKey_ASN1.
  490. */
  491. BOOST_ASIO_DECL boost::system::error_code use_private_key(
  492. const const_buffer& private_key, file_format format,
  493. boost::system::error_code& ec);
  494. /// Use a private key from a file.
  495. /**
  496. * This function is used to load a private key into the context from a file.
  497. *
  498. * @param filename The name of the file containing the private key.
  499. *
  500. * @param format The file format (ASN.1 or PEM).
  501. *
  502. * @throws boost::system::system_error Thrown on failure.
  503. *
  504. * @note Calls @c SSL_CTX_use_PrivateKey_file.
  505. */
  506. BOOST_ASIO_DECL void use_private_key_file(
  507. const std::string& filename, file_format format);
  508. /// Use a private key from a file.
  509. /**
  510. * This function is used to load a private key into the context from a file.
  511. *
  512. * @param filename The name of the file containing the private key.
  513. *
  514. * @param format The file format (ASN.1 or PEM).
  515. *
  516. * @param ec Set to indicate what error occurred, if any.
  517. *
  518. * @note Calls @c SSL_CTX_use_PrivateKey_file.
  519. */
  520. BOOST_ASIO_DECL boost::system::error_code use_private_key_file(
  521. const std::string& filename, file_format format,
  522. boost::system::error_code& ec);
  523. /// Use an RSA private key from a memory buffer.
  524. /**
  525. * This function is used to load an RSA private key into the context from a
  526. * buffer.
  527. *
  528. * @param private_key The buffer containing the RSA private key.
  529. *
  530. * @param format The private key format (ASN.1 or PEM).
  531. *
  532. * @throws boost::system::system_error Thrown on failure.
  533. *
  534. * @note Calls @c SSL_CTX_use_RSAPrivateKey or SSL_CTX_use_RSAPrivateKey_ASN1.
  535. */
  536. BOOST_ASIO_DECL void use_rsa_private_key(
  537. const const_buffer& private_key, file_format format);
  538. /// Use an RSA private key from a memory buffer.
  539. /**
  540. * This function is used to load an RSA private key into the context from a
  541. * buffer.
  542. *
  543. * @param private_key The buffer containing the RSA private key.
  544. *
  545. * @param format The private key format (ASN.1 or PEM).
  546. *
  547. * @param ec Set to indicate what error occurred, if any.
  548. *
  549. * @note Calls @c SSL_CTX_use_RSAPrivateKey or SSL_CTX_use_RSAPrivateKey_ASN1.
  550. */
  551. BOOST_ASIO_DECL boost::system::error_code use_rsa_private_key(
  552. const const_buffer& private_key, file_format format,
  553. boost::system::error_code& ec);
  554. /// Use an RSA private key from a file.
  555. /**
  556. * This function is used to load an RSA private key into the context from a
  557. * file.
  558. *
  559. * @param filename The name of the file containing the RSA private key.
  560. *
  561. * @param format The file format (ASN.1 or PEM).
  562. *
  563. * @throws boost::system::system_error Thrown on failure.
  564. *
  565. * @note Calls @c SSL_CTX_use_RSAPrivateKey_file.
  566. */
  567. BOOST_ASIO_DECL void use_rsa_private_key_file(
  568. const std::string& filename, file_format format);
  569. /// Use an RSA private key from a file.
  570. /**
  571. * This function is used to load an RSA private key into the context from a
  572. * file.
  573. *
  574. * @param filename The name of the file containing the RSA private key.
  575. *
  576. * @param format The file format (ASN.1 or PEM).
  577. *
  578. * @param ec Set to indicate what error occurred, if any.
  579. *
  580. * @note Calls @c SSL_CTX_use_RSAPrivateKey_file.
  581. */
  582. BOOST_ASIO_DECL boost::system::error_code use_rsa_private_key_file(
  583. const std::string& filename, file_format format,
  584. boost::system::error_code& ec);
  585. /// Use the specified memory buffer to obtain the temporary Diffie-Hellman
  586. /// parameters.
  587. /**
  588. * This function is used to load Diffie-Hellman parameters into the context
  589. * from a buffer.
  590. *
  591. * @param dh The memory buffer containing the Diffie-Hellman parameters. The
  592. * buffer must use the PEM format.
  593. *
  594. * @throws boost::system::system_error Thrown on failure.
  595. *
  596. * @note Calls @c SSL_CTX_set_tmp_dh.
  597. */
  598. BOOST_ASIO_DECL void use_tmp_dh(const const_buffer& dh);
  599. /// Use the specified memory buffer to obtain the temporary Diffie-Hellman
  600. /// parameters.
  601. /**
  602. * This function is used to load Diffie-Hellman parameters into the context
  603. * from a buffer.
  604. *
  605. * @param dh The memory buffer containing the Diffie-Hellman parameters. The
  606. * buffer must use the PEM format.
  607. *
  608. * @param ec Set to indicate what error occurred, if any.
  609. *
  610. * @note Calls @c SSL_CTX_set_tmp_dh.
  611. */
  612. BOOST_ASIO_DECL boost::system::error_code use_tmp_dh(
  613. const const_buffer& dh, boost::system::error_code& ec);
  614. /// Use the specified file to obtain the temporary Diffie-Hellman parameters.
  615. /**
  616. * This function is used to load Diffie-Hellman parameters into the context
  617. * from a file.
  618. *
  619. * @param filename The name of the file containing the Diffie-Hellman
  620. * parameters. The file must use the PEM format.
  621. *
  622. * @throws boost::system::system_error Thrown on failure.
  623. *
  624. * @note Calls @c SSL_CTX_set_tmp_dh.
  625. */
  626. BOOST_ASIO_DECL void use_tmp_dh_file(const std::string& filename);
  627. /// Use the specified file to obtain the temporary Diffie-Hellman parameters.
  628. /**
  629. * This function is used to load Diffie-Hellman parameters into the context
  630. * from a file.
  631. *
  632. * @param filename The name of the file containing the Diffie-Hellman
  633. * parameters. The file must use the PEM format.
  634. *
  635. * @param ec Set to indicate what error occurred, if any.
  636. *
  637. * @note Calls @c SSL_CTX_set_tmp_dh.
  638. */
  639. BOOST_ASIO_DECL boost::system::error_code use_tmp_dh_file(
  640. const std::string& filename, boost::system::error_code& ec);
  641. /// Set the password callback.
  642. /**
  643. * This function is used to specify a callback function to obtain password
  644. * information about an encrypted key in PEM format.
  645. *
  646. * @param callback The function object to be used for obtaining the password.
  647. * The function signature of the handler must be:
  648. * @code std::string password_callback(
  649. * std::size_t max_length, // The maximum size for a password.
  650. * password_purpose purpose // Whether password is for reading or writing.
  651. * ); @endcode
  652. * The return value of the callback is a string containing the password.
  653. *
  654. * @throws boost::system::system_error Thrown on failure.
  655. *
  656. * @note Calls @c SSL_CTX_set_default_passwd_cb.
  657. */
  658. template <typename PasswordCallback>
  659. void set_password_callback(PasswordCallback callback);
  660. /// Set the password callback.
  661. /**
  662. * This function is used to specify a callback function to obtain password
  663. * information about an encrypted key in PEM format.
  664. *
  665. * @param callback The function object to be used for obtaining the password.
  666. * The function signature of the handler must be:
  667. * @code std::string password_callback(
  668. * std::size_t max_length, // The maximum size for a password.
  669. * password_purpose purpose // Whether password is for reading or writing.
  670. * ); @endcode
  671. * The return value of the callback is a string containing the password.
  672. *
  673. * @param ec Set to indicate what error occurred, if any.
  674. *
  675. * @note Calls @c SSL_CTX_set_default_passwd_cb.
  676. */
  677. template <typename PasswordCallback>
  678. boost::system::error_code set_password_callback(PasswordCallback callback,
  679. boost::system::error_code& ec);
  680. private:
  681. struct bio_cleanup;
  682. struct x509_cleanup;
  683. struct evp_pkey_cleanup;
  684. struct rsa_cleanup;
  685. struct dh_cleanup;
  686. // Helper function used to set a peer certificate verification callback.
  687. BOOST_ASIO_DECL boost::system::error_code do_set_verify_callback(
  688. detail::verify_callback_base* callback, boost::system::error_code& ec);
  689. // Callback used when the SSL implementation wants to verify a certificate.
  690. BOOST_ASIO_DECL static int verify_callback_function(
  691. int preverified, X509_STORE_CTX* ctx);
  692. // Helper function used to set a password callback.
  693. BOOST_ASIO_DECL boost::system::error_code do_set_password_callback(
  694. detail::password_callback_base* callback, boost::system::error_code& ec);
  695. // Callback used when the SSL implementation wants a password.
  696. BOOST_ASIO_DECL static int password_callback_function(
  697. char* buf, int size, int purpose, void* data);
  698. // Helper function to set the temporary Diffie-Hellman parameters from a BIO.
  699. BOOST_ASIO_DECL boost::system::error_code do_use_tmp_dh(
  700. BIO* bio, boost::system::error_code& ec);
  701. // Helper function to make a BIO from a memory buffer.
  702. BOOST_ASIO_DECL BIO* make_buffer_bio(const const_buffer& b);
  703. // The underlying native implementation.
  704. native_handle_type handle_;
  705. // Ensure openssl is initialised.
  706. boost::asio::ssl::detail::openssl_init<> init_;
  707. };
  708. #endif // defined(BOOST_ASIO_ENABLE_OLD_SSL)
  709. } // namespace ssl
  710. } // namespace asio
  711. } // namespace boost
  712. #include <boost/asio/detail/pop_options.hpp>
  713. #include <boost/asio/ssl/impl/context.hpp>
  714. #if defined(BOOST_ASIO_HEADER_ONLY)
  715. # include <boost/asio/ssl/impl/context.ipp>
  716. #endif // defined(BOOST_ASIO_HEADER_ONLY)
  717. #endif // BOOST_ASIO_SSL_CONTEXT_HPP