mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
83 lines
1.5 KiB
C++
83 lines
1.5 KiB
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <cstring>
|
|
|
|
namespace fnd
|
|
{
|
|
namespace ecdsa
|
|
{
|
|
const size_t kEcdsa240Size = 0x1E;
|
|
|
|
enum EcdsaType
|
|
{
|
|
ECDSA_240,
|
|
};
|
|
|
|
#pragma pack (push, 1)
|
|
struct sEcdsa240Point
|
|
{
|
|
uint8_t r[kEcdsa240Size];
|
|
uint8_t s[kEcdsa240Size];
|
|
|
|
void operator=(const sEcdsa240Point& other)
|
|
{
|
|
memcpy(this->r, other.r, kEcdsa240Size);
|
|
memcpy(this->s, other.s, kEcdsa240Size);
|
|
}
|
|
|
|
bool operator==(const sEcdsa240Point& other) const
|
|
{
|
|
return memcmp(this->r, other.r, kEcdsa240Size) == 0 \
|
|
&& memcmp(this->s, other.s, kEcdsa240Size) == 0;
|
|
}
|
|
|
|
bool operator!=(const sEcdsa240Point& other) const
|
|
{
|
|
return !operator==(other);
|
|
}
|
|
};
|
|
|
|
struct sEcdsa240PrivateKey
|
|
{
|
|
uint8_t k[kEcdsa240Size];
|
|
|
|
void operator=(const sEcdsa240PrivateKey& other)
|
|
{
|
|
memcpy(this->k, other.k, kEcdsa240Size);
|
|
}
|
|
|
|
bool operator==(const sEcdsa240PrivateKey& other) const
|
|
{
|
|
return memcmp(this->k, other.k, kEcdsa240Size) == 0;
|
|
}
|
|
|
|
bool operator!=(const sEcdsa240PrivateKey& other) const
|
|
{
|
|
return !operator==(other);
|
|
}
|
|
};
|
|
|
|
struct sEcdsa240Key
|
|
{
|
|
sEcdsa240Point pub;
|
|
sEcdsa240PrivateKey pvt;
|
|
|
|
void operator=(const sEcdsa240Key& other)
|
|
{
|
|
this->pub = other.pub;
|
|
this->pvt = other.pvt;
|
|
}
|
|
|
|
bool operator==(const sEcdsa240Key& other) const
|
|
{
|
|
return this->pub == other.pub && this->pvt == other.pvt;
|
|
}
|
|
|
|
bool operator!=(const sEcdsa240Key& other) const
|
|
{
|
|
return !operator==(other);
|
|
}
|
|
};
|
|
#pragma pack (pop)
|
|
}
|
|
}
|