mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
53 lines
No EOL
1.5 KiB
C++
53 lines
No EOL
1.5 KiB
C++
#pragma once
|
|
#include <string>
|
|
#include <fnd/types.h>
|
|
#include <fnd/ISerialisable.h>
|
|
#include <nx/aci.h>
|
|
#include <nx/FileSystemAccessControlBinary.h>
|
|
#include <nx/ServiceAccessControlBinary.h>
|
|
#include <nx/KcBinary.h>
|
|
|
|
namespace nx
|
|
{
|
|
class AccessControlInfoBinary : public fnd::ISerialisable
|
|
{
|
|
public:
|
|
AccessControlInfoBinary();
|
|
AccessControlInfoBinary(const AccessControlInfoBinary& other);
|
|
|
|
void operator=(const AccessControlInfoBinary& other);
|
|
bool operator==(const AccessControlInfoBinary& other) const;
|
|
bool operator!=(const AccessControlInfoBinary& other) const;
|
|
|
|
// export/import binary
|
|
void toBytes();
|
|
void fromBytes(const byte_t* data, size_t len);
|
|
const fnd::Vec<byte_t>& getBytes() const;
|
|
|
|
// variables
|
|
void clear();
|
|
|
|
uint64_t getProgramId() const;
|
|
void setProgramId(uint64_t program_id);
|
|
|
|
const nx::FileSystemAccessControlBinary& getFileSystemAccessControl() const;
|
|
void setFileSystemAccessControl(const FileSystemAccessControlBinary& fac);
|
|
|
|
const nx::ServiceAccessControlBinary& getServiceAccessControl() const;
|
|
void setServiceAccessControl(const ServiceAccessControlBinary& sac);
|
|
|
|
const nx::KcBinary& getKernelCapabilities() const;
|
|
void setKernelCapabilities(const KcBinary& kc);
|
|
private:
|
|
const std::string kModuleName = "ACCESS_CONTROL_INFO_BINARY";
|
|
|
|
// raw data
|
|
fnd::Vec<byte_t> mRawBinary;
|
|
|
|
// variables
|
|
uint64_t mProgramId;
|
|
nx::FileSystemAccessControlBinary mFileSystemAccessControl;
|
|
nx::ServiceAccessControlBinary mServiceAccessControl;
|
|
nx::KcBinary mKernelCapabilities;
|
|
};
|
|
} |