From 4feb6b3e29e46809bea06dd3737fab6222ecbefb Mon Sep 17 00:00:00 2001 From: iamamyth Date: Fri, 10 Jan 2025 12:00:19 -0800 Subject: [PATCH] crypto: remove unused POD classes Remove the following unused classes from the crypto namespace: public_keyV, secret_keyV, and public_keyM. --- src/crypto/crypto.h | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/crypto/crypto.h b/src/crypto/crypto.h index 925201782..01def5dea 100644 --- a/src/crypto/crypto.h +++ b/src/crypto/crypto.h @@ -71,22 +71,6 @@ namespace crypto { using secret_key = epee::mlocked>; - POD_CLASS public_keyV { - std::vector keys; - int rows; - }; - - POD_CLASS secret_keyV { - std::vector keys; - int rows; - }; - - POD_CLASS public_keyM { - int cols; - int rows; - std::vector column_vectors; - }; - POD_CLASS key_derivation: ec_point { friend class crypto_ops; };