aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/cert_ver.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-12-29 02:41:53 +0000
committerlloyd <[email protected]>2011-12-29 02:41:53 +0000
commitcaa9dfa12cf69bb4ab88c399e61e856fedb24900 (patch)
tree2df3665d97199c4150515667e89272679210f069 /src/tls/cert_ver.cpp
parent6432abc730f65328affb4f0ca7c0116b3ded353f (diff)
Clean up the ordering of constructor args to the various message types
Diffstat (limited to 'src/tls/cert_ver.cpp')
-rw-r--r--src/tls/cert_ver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/cert_ver.cpp b/src/tls/cert_ver.cpp
index e4dd7a840..5a20e3029 100644
--- a/src/tls/cert_ver.cpp
+++ b/src/tls/cert_ver.cpp
@@ -20,9 +20,9 @@ namespace Botan {
/*
* Create a new Certificate Verify message
*/
-Certificate_Verify::Certificate_Verify(RandomNumberGenerator& rng,
- Record_Writer& writer,
+Certificate_Verify::Certificate_Verify(Record_Writer& writer,
TLS_Handshake_Hash& hash,
+ RandomNumberGenerator& rng,
const Private_Key* priv_key)
{
BOTAN_ASSERT_NONNULL(priv_key);