We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91bf540 commit 7740237Copy full SHA for 7740237
2 files changed
include/ncrypto.h
@@ -12,13 +12,21 @@
12
#include <openssl/ssl.h>
13
#include <openssl/x509.h>
14
15
+#include <stdint.h>
16
#include <cstddef>
17
+#include <cstdio>
18
#include <functional>
19
#include <list>
20
#include <memory>
21
#include <optional>
22
#include <string>
23
#include <string_view>
24
+#include <utility>
25
+
26
+#if NCRYPTO_DEVELOPMENT_CHECKS
27
+#include <iostream>
28
+#endif
29
30
#ifndef OPENSSL_NO_ENGINE
31
#include <openssl/engine.h>
32
#endif // !OPENSSL_NO_ENGINE
src/ncrypto.cpp
@@ -17,8 +17,12 @@
#include <algorithm>
#include <array>
+#include <cctype>
+#include <climits>
#include <cstring>
+#include <vector>
#if OPENSSL_VERSION_MAJOR >= 3
#include <openssl/core_names.h>
#include <openssl/params.h>
0 commit comments