mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#pragma once
|
|
#include <string>
|
|
#include <fnd/MemoryBlob.h>
|
|
#include <nx/AciBinary.h>
|
|
#include <crypto/rsa.h>
|
|
|
|
namespace nx
|
|
{
|
|
class AcidBinary :
|
|
public AciBinary
|
|
{
|
|
public:
|
|
AcidBinary();
|
|
AcidBinary(const AcidBinary& other);
|
|
AcidBinary(const byte_t* bytes, size_t len);
|
|
|
|
bool operator==(const AcidBinary& other) const;
|
|
bool operator!=(const AcidBinary& other) const;
|
|
void operator=(const AcidBinary& other);
|
|
|
|
// to be used after export
|
|
const byte_t* getBytes() const;
|
|
size_t getSize() const;
|
|
|
|
// export/import binary
|
|
virtual void exportBinary();
|
|
void signBinary(const crypto::rsa::sRsa2048Key& key);
|
|
virtual void importBinary(const byte_t* bytes, size_t len);
|
|
void verifyBinary(const crypto::rsa::sRsa2048Key& key) const;
|
|
|
|
// variables
|
|
virtual void clear();
|
|
|
|
const crypto::rsa::sRsa2048Key& getNcaHeader2RsaKey() const;
|
|
void setNcaHeader2RsaKey(const crypto::rsa::sRsa2048Key& key);
|
|
|
|
private:
|
|
const std::string kModuleName = "ACID_BINARY";
|
|
|
|
// raw binary
|
|
fnd::MemoryBlob mBinaryBlob;
|
|
|
|
// variables
|
|
crypto::rsa::sRsa2048Key mEmbeddedPublicKey;
|
|
|
|
bool isEqual(const AcidBinary& other) const;
|
|
void copyFrom(const AcidBinary& other);
|
|
};
|
|
}
|
|
|