aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl/tls_suites.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-15 13:17:04 +0000
committerlloyd <[email protected]>2010-10-15 13:17:04 +0000
commitf7b299b7ecc684754da2959366d8895ab621d430 (patch)
treef9f7bd0ef94dbb8945e977edf252e8fcb52c7781 /src/ssl/tls_suites.h
parent01e0b5f9e0a6572e8eea8f7e226eb96e11c0fa58 (diff)
Use size_t in ssl
Diffstat (limited to 'src/ssl/tls_suites.h')
-rw-r--r--src/ssl/tls_suites.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ssl/tls_suites.h b/src/ssl/tls_suites.h
index 612c148e6..8d6db0e8b 100644
--- a/src/ssl/tls_suites.h
+++ b/src/ssl/tls_suites.h
@@ -25,7 +25,7 @@ class BOTAN_DLL CipherSuite
std::string cipher_algo() const { return cipher; }
std::string mac_algo() const { return mac; }
- u32bit cipher_keylen() const { return cipher_key_length; }
+ size_t cipher_keylen() const { return cipher_key_length; }
TLS_Ciphersuite_Algos kex_type() const { return kex_algo; }
TLS_Ciphersuite_Algos sig_type() const { return sig_algo; }
@@ -34,7 +34,7 @@ class BOTAN_DLL CipherSuite
private:
TLS_Ciphersuite_Algos kex_algo, sig_algo;
std::string cipher, mac;
- u32bit cipher_key_length;
+ size_t cipher_key_length;
};
}