mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Cleared C4250 under MSVC (Issue 412)
This commit is contained in:
parent
5f0cbde980
commit
c9d4ebb3d4
8
esign.h
8
esign.h
@ -85,6 +85,14 @@ public:
|
||||
void Initialize(RandomNumberGenerator &rng, unsigned int modulusBits)
|
||||
{GenerateRandomWithKeySize(rng, modulusBits);}
|
||||
|
||||
// Squash Visual Studio C4250 warning
|
||||
void Save(BufferedTransformation &bt) const
|
||||
{BEREncode(bt);}
|
||||
|
||||
// Squash Visual Studio C4250 warning
|
||||
void Load(BufferedTransformation &bt)
|
||||
{BERDecode(bt);}
|
||||
|
||||
void BERDecode(BufferedTransformation &bt);
|
||||
void DEREncode(BufferedTransformation &bt) const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user