summaryrefslogtreecommitdiffstats
path: root/ldid.hpp
blob: ad85f0354251102d63a5c727de81904d20145e99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef LDID_HPP
#define LDID_HPP

#include <cstdlib>
#include <map>
#include <streambuf>
#include <string>

namespace ldid {

typedef std::map<uint32_t, std::string> Slots;

void Sign(void *idata, size_t isize, std::streambuf &output, const std::string &name, const std::string &entitlements, const std::string &key, const Slots &slots);

}

#endif//LDID_HPP