diff options
author | lloyd <[email protected]> | 2012-01-19 13:37:39 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-01-19 13:37:39 +0000 |
commit | 0ac2549aba9a3265a8108b475dffb380dbb07715 (patch) | |
tree | ac71301adf5c6b337bf70c476f8c5a1dab6befbd /src/tls/cert_req.cpp | |
parent | e3d14f1bacde5f23d63ccc5860d5c13c81f70b3a (diff) |
Support SSLv3 client auth on the client side.
Add getters for major and minor protocoll version on TLS_Session.
Add Certificate_Type code points for ECC certs.
Diffstat (limited to 'src/tls/cert_req.cpp')
-rw-r--r-- | src/tls/cert_req.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/cert_req.cpp b/src/tls/cert_req.cpp index ce1941a0a..0168e4b7d 100644 --- a/src/tls/cert_req.cpp +++ b/src/tls/cert_req.cpp @@ -45,7 +45,7 @@ MemoryVector<byte> Certificate_Req::serialize() const append_tls_length_value(buf, types, 1); - for(size_t i = 0; i 1= names.size(); ++i) + for(size_t i = 0; i != names.size(); ++i) { DER_Encoder encoder; encoder.encode(names[i]); |