ATLAS Offline Software
Loading...
Searching...
No Matches
Base64Codec.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4// @file Base64Codec.h
5// Header for base64 encoding/decoding functions
6// @author Shaun Roe
7// @date November 2019
8#ifndef IOVDbSvc_Base64Codec_h
9#define IOVDbSvc_Base64Codec_h
10#include <string>
11
12namespace coral{
13 class Blob;
14}
15namespace IOVDbNamespace{
16 std::string
17 base64Encode(const coral::Blob & blob);
18
19 coral::Blob
20 base64Decode(const std::string & base64String);
21}
22#endif
coral::Blob base64Decode(const std::string &base64String)
std::string base64Encode(const coral::Blob &blob)