Sha256: c0928a94081e851199d8fb6ae43dd1771fdc7a20ede3e794c1e7a1d6b62f66c5
Contents?: true
Size: 634 Bytes
Versions: 34
Compression:
Stored size: 634 Bytes
Contents
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_EVENTS_BINARY_TO_BASE64URL_HPP #define TAO_JSON_EVENTS_BINARY_TO_BASE64URL_HPP #include <vector> #include "../binary_view.hpp" #include "../internal/base64url.hpp" namespace tao::json::events { template< typename Consumer > struct binary_to_base64url : Consumer { using Consumer::Consumer; void binary( const tao::binary_view v ) { Consumer::string( internal::base64url( v ) ); } }; } // namespace tao::json::events #endif
Version data entries
34 entries across 34 versions & 1 rubygems