Gabriele Contini
2020-01-11 1d1082fe695366da3498f528b953203a90fe7385
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * verifier.hpp
 *
 *  Created on: Nov 16, 2019
 *      Author: GC
 */
 
#ifndef SRC_LIBRARY_OS_VERIFIER_HPP_
#define SRC_LIBRARY_OS_VERIFIER_HPP_
 
#include <string>
#include "../base/base.h"
 
namespace license {
 
FUNCTION_RETURN verify_signature(const std::string& stringToVerify, const std::string& signatureB64);
 
} /* namespace license */
 
#endif /* SRC_LIBRARY_OS_VERIFIER_HPP_ */