aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/openssl/ossl_arc4.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-12 20:05:14 +0000
committerlloyd <[email protected]>2010-10-12 20:05:14 +0000
commitb29e17a4ea70bcabb7d8eeb441bb70fd0c87b185 (patch)
treec297f0245d3a604fe4dea849979b84c3b4e709f9 /src/engine/openssl/ossl_arc4.cpp
parent9abeb56f7d355b8ff86cbb465ba1e0a08257ec12 (diff)
Use size_t in SCAN_Name
Diffstat (limited to 'src/engine/openssl/ossl_arc4.cpp')
-rw-r--r--src/engine/openssl/ossl_arc4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/openssl/ossl_arc4.cpp b/src/engine/openssl/ossl_arc4.cpp
index d76bce349..78217a760 100644
--- a/src/engine/openssl/ossl_arc4.cpp
+++ b/src/engine/openssl/ossl_arc4.cpp
@@ -72,7 +72,7 @@ OpenSSL_Engine::find_stream_cipher(const SCAN_Name& request,
Algorithm_Factory&) const
{
if(request.algo_name() == "ARC4")
- return new ARC4_OpenSSL(request.arg_as_u32bit(0, 0));
+ return new ARC4_OpenSSL(request.arg_as_integer(0, 0));
if(request.algo_name() == "RC4_drop")
return new ARC4_OpenSSL(768);