diff options
author | Jack Lloyd <[email protected]> | 2018-05-31 19:34:26 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-05-31 19:34:26 -0400 |
commit | 9553f4a054ebee828ee4313cf505f986b7a2e7e8 (patch) | |
tree | e22f62e0aa0507355fc8c975eec5abefffd56530 | |
parent | bbc621dac505dc7a02aa6d2443b1760a17484992 (diff) |
Move codec_base.h to internal header in utils
-rw-r--r-- | src/lib/codec/base32/base32.cpp | 2 | ||||
-rw-r--r-- | src/lib/codec/base32/base32.h | 4 | ||||
-rw-r--r-- | src/lib/codec/codec_base/info.txt | 2 | ||||
-rw-r--r-- | src/lib/utils/codec_base.h (renamed from src/lib/codec/codec_base/codec_base.h) | 0 | ||||
-rw-r--r-- | src/lib/utils/info.txt | 1 |
5 files changed, 4 insertions, 5 deletions
diff --git a/src/lib/codec/base32/base32.cpp b/src/lib/codec/base32/base32.cpp index 392c063ba..0550dd384 100644 --- a/src/lib/codec/base32/base32.cpp +++ b/src/lib/codec/base32/base32.cpp @@ -6,7 +6,7 @@ */ #include <botan/base32.h> -#include <botan/codec_base.h> +#include <botan/internal/codec_base.h> #include <botan/exceptn.h> #include <botan/internal/rounding.h> diff --git a/src/lib/codec/base32/base32.h b/src/lib/codec/base32/base32.h index 15b894c29..d2bcb3e6a 100644 --- a/src/lib/codec/base32/base32.h +++ b/src/lib/codec/base32/base32.h @@ -36,7 +36,7 @@ size_t BOTAN_PUBLIC_API(2, 7) base32_encode(char output[], * Perform base32 encoding * @param input some input * @param input_length length of input in bytes -* @return base32adecimal representation of input +* @return base32 representation of input */ std::string BOTAN_PUBLIC_API(2, 7) base32_encode(const uint8_t input[], size_t input_length); @@ -44,7 +44,7 @@ std::string BOTAN_PUBLIC_API(2, 7) base32_encode(const uint8_t input[], /** * Perform base32 encoding * @param input some input -* @return base32adecimal representation of input +* @return base32 representation of input */ template <typename Alloc> std::string base32_encode(const std::vector<uint8_t, Alloc>& input) diff --git a/src/lib/codec/codec_base/info.txt b/src/lib/codec/codec_base/info.txt deleted file mode 100644 index 0771e5801..000000000 --- a/src/lib/codec/codec_base/info.txt +++ /dev/null @@ -1,2 +0,0 @@ -<defines> -</defines> diff --git a/src/lib/codec/codec_base/codec_base.h b/src/lib/utils/codec_base.h index 7b5a5f18c..7b5a5f18c 100644 --- a/src/lib/codec/codec_base/codec_base.h +++ b/src/lib/utils/codec_base.h diff --git a/src/lib/utils/info.txt b/src/lib/utils/info.txt index c9b419dcc..fb9325f93 100644 --- a/src/lib/utils/info.txt +++ b/src/lib/utils/info.txt @@ -26,6 +26,7 @@ stl_compatibility.h <header:internal> bit_ops.h +codec_base.h ct_utils.h donna128.h filesystem.h |