summaryrefslogtreecommitdiff
path: root/seckey.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-10-14 09:18:45 -0400
committerJeffrey Walton <noloader@gmail.com>2018-10-14 09:18:45 -0400
commitd6eaa5098efd272dbfd6a0c83a4d9d6743184115 (patch)
tree6cadc4c4005c65d0d34b3cdf231976a167ac3a25 /seckey.h
parent23279dcd459c785ab3c413dd6ca5746c19e5bee1 (diff)
downloadcryptopp-git-d6eaa5098efd272dbfd6a0c83a4d9d6743184115.tar.gz
Remove DEFAULT_BLOCKSIZE constants (GH #535)
This should have been removed around January 2018 with the other functions.
Diffstat (limited to 'seckey.h')
-rw-r--r--seckey.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/seckey.h b/seckey.h
index 343bd730..90fd6dce 100644
--- a/seckey.h
+++ b/seckey.h
@@ -42,12 +42,6 @@ class FixedBlockSize
public:
/// \brief The block size of the algorithm provided as a constant.
CRYPTOPP_CONSTANT(BLOCKSIZE = N)
- /// \brief The default blocksize for the algorithm provided as a constant.
- CRYPTOPP_CONSTANT(DEFAULT_BLOCKSIZE = N)
- /// \brief The minimum blocksize for the algorithm provided as a constant.
- CRYPTOPP_CONSTANT(MIN_BLOCKSIZE = N)
- /// \brief The maximum blocksize for the algorithm provided as a constant.
- CRYPTOPP_CONSTANT(MAX_BLOCKSIZE = N)
};
// ************** rounds ***************