mirror of
https://github.com/jakcron/nstool
synced 2024-12-26 14:41:14 +00:00
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <fnd/memory_blob.h>
|
||
|
#include <nx/ISerialiseableBinary.h>
|
||
|
#include <nx/AciBinary.h>
|
||
|
#include <crypto/rsa.h>
|
||
|
|
||
|
namespace nx
|
||
|
{
|
||
|
class AcidBinary :
|
||
|
public AciBinary
|
||
|
{
|
||
|
public:
|
||
|
AcidBinary();
|
||
|
AcidBinary(const AcidBinary& other);
|
||
|
AcidBinary(const u8* 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 u8* getBytes() const;
|
||
|
size_t getSize() const;
|
||
|
|
||
|
// export/import binary
|
||
|
virtual void exportBinary();
|
||
|
void signBinary(const crypto::rsa::sRsa2048Key& key);
|
||
|
virtual void importBinary(const u8* bytes, size_t len);
|
||
|
void verifyBinary(const crypto::rsa::sRsa2048Key& key);
|
||
|
|
||
|
// variables
|
||
|
virtual void clear();
|
||
|
|
||
|
const crypto::rsa::sRsa2048Key& getPublicKey() const;
|
||
|
void setPublicKey(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);
|
||
|
};
|
||
|
}
|
||
|
|