aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls
diff options
context:
space:
mode:
authorRenĂ© Meusel <[email protected]>2022-04-05 11:59:46 +0200
committerRenĂ© Meusel <[email protected]>2022-04-05 11:59:46 +0200
commit4c0c50f4a0ba20d10abe81b703942ffe3e1084ff (patch)
treea00746491d0e72d14e6c09cbe9d9933c727e834e /src/lib/tls
parent9b41f88edebdb1a978ebbd9fa7799be09282f404 (diff)
review comments
Diffstat (limited to 'src/lib/tls')
-rw-r--r--src/lib/tls/msg_cert_req.cpp1
-rw-r--r--src/lib/tls/msg_cert_verify.cpp3
-rw-r--r--src/lib/tls/tls_algos.h1
3 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/tls/msg_cert_req.cpp b/src/lib/tls/msg_cert_req.cpp
index aeb5c1a4e..ed80d5631 100644
--- a/src/lib/tls/msg_cert_req.cpp
+++ b/src/lib/tls/msg_cert_req.cpp
@@ -161,4 +161,5 @@ std::vector<uint8_t> Certificate_Req::serialize() const
return buf;
}
+
}
diff --git a/src/lib/tls/msg_cert_verify.cpp b/src/lib/tls/msg_cert_verify.cpp
index c06e8574b..3a69c2a34 100644
--- a/src/lib/tls/msg_cert_verify.cpp
+++ b/src/lib/tls/msg_cert_verify.cpp
@@ -8,13 +8,14 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
+#include <botan/tls_messages.h>
+
#include <botan/internal/tls_handshake_io.h>
#include <botan/internal/tls_handshake_state.h>
#include <botan/internal/tls_reader.h>
#include <botan/pk_keys.h>
#include <botan/tls_algos.h>
#include <botan/tls_extensions.h>
-#include <botan/tls_messages.h>
namespace Botan::TLS {
diff --git a/src/lib/tls/tls_algos.h b/src/lib/tls/tls_algos.h
index 120c155c2..32d1e7032 100644
--- a/src/lib/tls/tls_algos.h
+++ b/src/lib/tls/tls_algos.h
@@ -8,7 +8,6 @@
#define BOTAN_TLS_ALGO_IDS_H_
#include <botan/types.h>
-#include <botan/asn1_obj.h>
#include <string>
#include <vector>