summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto/PK
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2021-11-11 13:43:44 +0330
committerAndreas Kling <kling@serenityos.org>2021-11-11 20:36:36 +0100
commitbf59d9e82482fc0d76616193e2034d32376474e7 (patch)
tree1cd7a5b393649b62345c0f6cbd93ac4eb2f72502 /Userland/Libraries/LibCrypto/PK
parenta59fc324bd14040cc7b4f1973714879b2a1936ac (diff)
downloadserenity-bf59d9e82482fc0d76616193e2034d32376474e7.zip
Userland: Include Vector.h in a few places to make HeaderCheck happy
This header was being transitively pulled in, but that no longer happens after 5f7d008791f9e358638283dc2f0d709a601344ff.
Diffstat (limited to 'Userland/Libraries/LibCrypto/PK')
-rw-r--r--Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h b/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h
index 3193c772d4..d80ca5e6e9 100644
--- a/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h
+++ b/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h
@@ -9,6 +9,7 @@
#include <AK/Array.h>
#include <AK/Format.h>
#include <AK/Random.h>
+#include <AK/Vector.h>
#include <LibCrypto/PK/Code/Code.h>
namespace Crypto {