diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2019-07-31 10:03:55 +0000 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2019-10-15 22:56:43 +0000 |
commit | 084e17cebd424b8e8ced674bc810eef4e6ee5d3b (patch) | |
tree | 683800e6c7b199e26ac19d481f2cb6e340cebf29 /src/crypto | |
parent | eb292af309aa57f3d7998b01307dd4cb91702908 (diff) |
Remove unused includes
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/aes.cpp | 1 | ||||
-rw-r--r-- | src/crypto/chacha_poly_aead.cpp | 1 | ||||
-rw-r--r-- | src/crypto/sha256.cpp | 1 | ||||
-rw-r--r-- | src/crypto/sha256_shani.cpp | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/crypto/aes.cpp b/src/crypto/aes.cpp index b3fb927760..6ed9088434 100644 --- a/src/crypto/aes.cpp +++ b/src/crypto/aes.cpp @@ -4,7 +4,6 @@ #include <crypto/aes.h> -#include <assert.h> #include <string.h> extern "C" { diff --git a/src/crypto/chacha_poly_aead.cpp b/src/crypto/chacha_poly_aead.cpp index 6a3d43deb1..0582a60c4f 100644 --- a/src/crypto/chacha_poly_aead.cpp +++ b/src/crypto/chacha_poly_aead.cpp @@ -4,7 +4,6 @@ #include <crypto/chacha_poly_aead.h> -#include <crypto/common.h> #include <crypto/poly1305.h> #include <support/cleanse.h> diff --git a/src/crypto/sha256.cpp b/src/crypto/sha256.cpp index cab37e0322..3257ee7f97 100644 --- a/src/crypto/sha256.cpp +++ b/src/crypto/sha256.cpp @@ -7,7 +7,6 @@ #include <assert.h> #include <string.h> -#include <atomic> #if defined(__x86_64__) || defined(__amd64__) || defined(__i386__) #if defined(USE_ASM) diff --git a/src/crypto/sha256_shani.cpp b/src/crypto/sha256_shani.cpp index e561da42c5..7ea0c34796 100644 --- a/src/crypto/sha256_shani.cpp +++ b/src/crypto/sha256_shani.cpp @@ -11,7 +11,6 @@ #include <stdint.h> #include <immintrin.h> -#include <crypto/common.h> namespace { |