aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/aes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/aes.cpp')
-rw-r--r--src/crypto/aes.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/crypto/aes.cpp b/src/crypto/aes.cpp
index 5e70d25eee..bf7a252349 100644
--- a/src/crypto/aes.cpp
+++ b/src/crypto/aes.cpp
@@ -1,15 +1,15 @@
-// Copyright (c) 2016 The Bitcoin Core developers
+// Copyright (c) 2016-2017 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
-#include "aes.h"
-#include "crypto/common.h"
+#include <crypto/aes.h>
+#include <crypto/common.h>
#include <assert.h>
#include <string.h>
extern "C" {
-#include "crypto/ctaes/ctaes.c"
+#include <crypto/ctaes/ctaes.c>
}
AES128Encrypt::AES128Encrypt(const unsigned char key[16])