diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-04-20 13:25:18 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-04-21 14:32:18 +0300 |
commit | c1d9742df3cf20c3b235ecdd4f4d7a6f71037f1d (patch) | |
tree | 838df08ffbec943b315252748d64f719f537fd7d /butl/sha256.cxx | |
parent | c0beeb5f0b3285fd7b411859bd68d44b472ad034 (diff) |
Add sha256_to_fingerprint (), fingerprint_to_sha256 ()
Diffstat (limited to 'butl/sha256.cxx')
-rw-r--r-- | butl/sha256.cxx | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/butl/sha256.cxx b/butl/sha256.cxx index feca9a7..7c0b21e 100644 --- a/butl/sha256.cxx +++ b/butl/sha256.cxx @@ -9,6 +9,9 @@ #include <stdint.h> #include <stddef.h> // size_t +#include <cctype> // isxdigit(), toupper(), tolower() +#include <stdexcept> // invalid_argument + using SHA256_CTX = butl::sha256::context; extern "C" @@ -24,6 +27,8 @@ using namespace std; namespace butl { + // sha256 + // sha256:: sha256 () : done_ (false) @@ -73,4 +78,63 @@ namespace butl return str_; } + + // Conversion functions + // + string + sha256_to_fingerprint (const string& s) + { + auto bad = []() {throw invalid_argument ("invalid SHA256 string");}; + + size_t n (s.size ()); + if (n != 64) + bad (); + + string f; + f.reserve (n + 31); + for (size_t i (0); i < n; ++i) + { + char c (s[i]); + if (!isxdigit (c)) + bad (); + + if (i > 0 && i % 2 == 0) + f += ":"; + + f += toupper (c); + } + + return f; + } + + string + fingerprint_to_sha256 (const string& f) + { + auto bad = []() {throw invalid_argument ("invalid fingerprint");}; + + size_t n (f.size ()); + if (n != 32 * 3 - 1) + bad (); + + string s; + s.reserve (64); + for (size_t i (0); i < n; ++i) + { + char c (f[i]); + if ((i + 1) % 3 == 0) + { + if (c != ':') + bad (); + } + else + { + if (!isxdigit (c)) + bad (); + + s += tolower (c); + } + } + + return s; + } } |