Merge pull request #9694

4feb6b3e2 crypto: remove unused POD classes (iamamyth)
This commit is contained in:
tobtoht 2025-01-22 22:56:28 +00:00
commit 3b7bd060d0
No known key found for this signature in database
GPG Key ID: E45B10DD027D2472

View File

@ -71,22 +71,6 @@ namespace crypto {
using secret_key = epee::mlocked<tools::scrubbed<ec_scalar>>;
POD_CLASS public_keyV {
std::vector<public_key> keys;
int rows;
};
POD_CLASS secret_keyV {
std::vector<secret_key> keys;
int rows;
};
POD_CLASS public_keyM {
int cols;
int rows;
std::vector<secret_keyV> column_vectors;
};
POD_CLASS key_derivation: ec_point {
friend class crypto_ops;
};