Version 1.1.3
-- Implemented TLS 1.1 (which obsoleted the TLS 1.0 CBC protection
+- Implemented TLS 1.1 (and also obsoleted the TLS 1.0 CBC protection
hack).
Version 1.1.2 (28/12/2003)
in order to avoid having people working on the same thing.
Current list:
-* Add support for TLS 1.1
* Add gnutls_certificate_set_openpgp_keyring()
functions, similar to gnutls_certificate_set_openpgp_key().
* Use subkeys with the 0x20 flag in openpgp keys (if present),
* Add function to extract the signers of an openpgp key. Should
be similar to gnutls_x509_crt_get_dn_oid().
* Add function to verify an openpgp key against a plain key.
-* Drop the compatibility functions.
* Convert documentation to texinfo format
* Audit the code
* Allow sending V2 Hello messages. It seems that some (old) broken
/* Actual encryption (inplace).
*/
- if ( (ret = _gnutls_cipher_encrypt(session->connection_state.
+ ret = _gnutls_cipher_encrypt(session->connection_state.
write_cipher_state, cipher_data,
- length)) < 0) {
+ length);
+ if (ret < 0) {
+ gnutls_assert();
return ret;
}