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 /src/lib/codec/base32/base32.h | |
parent | bbc621dac505dc7a02aa6d2443b1760a17484992 (diff) |
Move codec_base.h to internal header in utils
Diffstat (limited to 'src/lib/codec/base32/base32.h')
-rw-r--r-- | src/lib/codec/base32/base32.h | 4 |
1 files changed, 2 insertions, 2 deletions
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) |