LCOV - code coverage report
Current view: top level - src - base64.h (source / functions) Hit Total Coverage
Test: jami-coverage-filtered.info Lines: 2 2 100.0 %
Date: 2024-03-28 08:00:27 Functions: 1 1 100.0 %

          Line data    Source code
       1             : /*
       2             :  *  Copyright (C) 2004-2024 Savoir-faire Linux Inc.
       3             :  *
       4             :  *  This program is free software; you can redistribute it and/or modify
       5             :  *  it under the terms of the GNU General Public License as published by
       6             :  *  the Free Software Foundation; either version 3 of the License, or
       7             :  *  (at your option) any later version.
       8             :  *
       9             :  *  This program is distributed in the hope that it will be useful,
      10             :  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
      11             :  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      12             :  *  GNU General Public License for more details.
      13             :  *
      14             :  *  You should have received a copy of the GNU General Public License
      15             :  *  along with this program; if not, write to the Free Software
      16             :  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
      17             :  */
      18             : 
      19             : #pragma once
      20             : 
      21             : #include <string>
      22             : #include <string_view>
      23             : #include <vector>
      24             : #include <exception>
      25             : 
      26             : #include <cstdint>
      27             : 
      28             : namespace jami {
      29             : namespace base64 {
      30             : 
      31             : class base64_exception : public std::exception
      32             : {};
      33             : 
      34             : std::string encode(std::string_view);
      35             : 
      36        5302 : inline std::string encode(const std::vector<uint8_t>& data) {
      37        5302 :     return encode(std::string_view((const char*)data.data(), data.size()));
      38             : }
      39             : 
      40             : std::vector<uint8_t> decode(std::string_view);
      41             : 
      42             : } // namespace base64
      43             : } // namespace jami

Generated by: LCOV version 1.14