aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/sid.hpp
blob: c84b725e28156f466650125e0515d0e853a653b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "Privilege check" project.
// For details, see https://github.com/egor-tensin/privilege-check.
// Distributed under the MIT License.

#pragma once

#include <Windows.h>
#include <sddl.h>

#include <array>
#include <string>

constexpr DWORD max_sid_size = SECURITY_MAX_SID_SIZE;

typedef std::array<unsigned char, max_sid_size> SidBuffer;

namespace sid
{
    SidBuffer well_known(WELL_KNOWN_SID_TYPE type);

    SidBuffer builtin_administrators();

    std::wstring to_string(const SidBuffer&);
}