aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate/lookup.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-02-09 15:15:25 +0000
committerlloyd <[email protected]>2011-02-09 15:15:25 +0000
commit5aafb813ed7b3824bc71b2aea22f4268f06ca75e (patch)
treebe94df14b329f746e8653090bc40c1980dc765b5 /src/libstate/lookup.h
parent75eff6cba7ac959f0d3b5292aa5ca7e321bf2e0d (diff)
More VC warning fixes
Diffstat (limited to 'src/libstate/lookup.h')
-rw-r--r--src/libstate/lookup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstate/lookup.h b/src/libstate/lookup.h
index f1e1a52ca..02c1708aa 100644
--- a/src/libstate/lookup.h
+++ b/src/libstate/lookup.h
@@ -288,7 +288,7 @@ inline bool have_mac(const std::string& algo_spec)
* @param algo_spec the name of the algorithm
* @return block size of the specified algorithm
*/
-BOTAN_DLL u32bit block_size_of(const std::string& algo_spec);
+BOTAN_DLL size_t block_size_of(const std::string& algo_spec);
/**
* Find out the output length of a certain symmetric algorithm.
@@ -297,7 +297,7 @@ BOTAN_DLL u32bit block_size_of(const std::string& algo_spec);
* @param algo_spec the name of the algorithm
* @return output length of the specified algorithm
*/
-BOTAN_DLL u32bit output_length_of(const std::string& algo_spec);
+BOTAN_DLL size_t output_length_of(const std::string& algo_spec);
}