]>
Commit | Line | Data |
---|---|---|
a0c715e9 JF |
1 | #ifndef LDID_HPP |
2 | #define LDID_HPP | |
3 | ||
4 | #include <cstdlib> | |
5 | #include <map> | |
6 | #include <streambuf> | |
7 | #include <string> | |
8 | ||
9 | namespace ldid { | |
10 | ||
11 | typedef std::map<uint32_t, std::string> Slots; | |
12 | ||
13 | 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); | |
14 | ||
15 | } | |
16 | ||
17 | #endif//LDID_HPP |