diff options
author | lloyd <[email protected]> | 2012-06-01 04:59:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-06-01 04:59:27 +0000 |
commit | a597c5ac36f012f76814fcfc1523d956871c0c0c (patch) | |
tree | b2003fc6a5a5d0d228ab966e0da84d89d5dc9db3 /src/libstate/lookup.h | |
parent | 63defdde855dca51d5db405cb97d9b7c9ba09332 (diff) |
Drop some deprecated functions
Diffstat (limited to 'src/libstate/lookup.h')
-rw-r--r-- | src/libstate/lookup.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/libstate/lookup.h b/src/libstate/lookup.h index 96364e1d9..7387a3471 100644 --- a/src/libstate/lookup.h +++ b/src/libstate/lookup.h @@ -299,36 +299,6 @@ BOTAN_DLL size_t block_size_of(const std::string& algo_spec); */ BOTAN_DLL size_t output_length_of(const std::string& algo_spec); -/** -* Find out the minimum key size of a certain symmetric algorithm. -* @deprecated Call algorithm_factory() directly -* -* @param algo_spec the name of the algorithm -* @return minimum key length of the specified algorithm -*/ -BOTAN_DEPRECATED("Retrieve object you want and then call key_spec") -BOTAN_DLL size_t min_keylength_of(const std::string& algo_spec); - -/** -* Find out the maximum key size of a certain symmetric algorithm. -* @deprecated Call algorithm_factory() directly -* -* @param algo_spec the name of the algorithm -* @return maximum key length of the specified algorithm -*/ -BOTAN_DEPRECATED("Retrieve object you want and then call key_spec") -BOTAN_DLL size_t max_keylength_of(const std::string& algo_spec); - -/** -* Find out the size any valid key is a multiple of for a certain algorithm. -* @deprecated Call algorithm_factory() directly -* -* @param algo_spec the name of the algorithm -* @return size any valid key is a multiple of -*/ -BOTAN_DEPRECATED("Retrieve object you want and then call key_spec") -BOTAN_DLL size_t keylength_multiple_of(const std::string& algo_spec); - } #endif |