summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-09-16 21:06:25 +0200
committerLinus Groh <mail@linusgroh.de>2021-10-06 23:52:40 +0100
commit5f25182cd596768ae0be04d75308ab27c86d70cf (patch)
tree5fd02cceab334add62ed987637209ff6849f73c6
parentce1313fbdcf858db376653c5289e33d319593b18 (diff)
downloadserenity-5f25182cd596768ae0be04d75308ab27c86d70cf.zip
LibCrypto: Add missing header to EMSA_PSS.h
-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 4e2b10c498..b1b1a569a9 100644
--- a/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h
+++ b/Userland/Libraries/LibCrypto/PK/Code/EMSA_PSS.h
@@ -7,6 +7,7 @@
#pragma once
#include <AK/Array.h>
+#include <AK/Format.h>
#include <AK/Random.h>
#include <LibCrypto/PK/Code/Code.h>