summaryrefslogtreecommitdiff
path: root/src/common/crypto_pwbox.c
diff options
context:
space:
mode:
authorIsis Lovecruft <isis@torproject.org>2018-04-06 21:40:17 +0000
committerIsis Lovecruft <isis@torproject.org>2018-04-06 22:49:15 +0000
commit88190026b3286b32ac22c1bbd999b7f1de2aa79f (patch)
tree12edb665ef2ff55b1cac5cecfb45c0c32419e746 /src/common/crypto_pwbox.c
parent64e6551b8bb934335251c6965355660ec26e712d (diff)
downloadtor-88190026b3286b32ac22c1bbd999b7f1de2aa79f.tar.gz
tor-88190026b3286b32ac22c1bbd999b7f1de2aa79f.zip
crypto: Alphabetise some #includes in /src/common/crypto*.
* FIXES part of #24658: https://bugs.torproject.org/24658
Diffstat (limited to 'src/common/crypto_pwbox.c')
-rw-r--r--src/common/crypto_pwbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/crypto_pwbox.c b/src/common/crypto_pwbox.c
index e49ca226ef..c2bd1d26cb 100644
--- a/src/common/crypto_pwbox.c
+++ b/src/common/crypto_pwbox.c
@@ -9,10 +9,10 @@
*/
#include "crypto.h"
-#include "crypto_s2k.h"
-#include "crypto_pwbox.h"
#include "crypto_digest.h"
+#include "crypto_pwbox.h"
#include "crypto_rand.h"
+#include "crypto_s2k.h"
#include "crypto_util.h"
#include "di_ops.h"
#include "util.h"