diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-09-13 14:19:12 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2018-02-19 15:29:34 +0100 |
commit | 5a8eb0c3fe660c1db8497c58fb5cae22829bc5dd (patch) | |
tree | 0993ea2571ea365a543b7c539b9a914858ac6427 /lib/tls13/encrypted_extensions.c | |
parent | 2eef509ce5f2d250f8dcaeffa46444dd2b694e91 (diff) | |
download | gnutls-5a8eb0c3fe660c1db8497c58fb5cae22829bc5dd.tar.gz |
handshake: added parsing of encrypted extensions
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/tls13/encrypted_extensions.c')
-rw-r--r-- | lib/tls13/encrypted_extensions.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/tls13/encrypted_extensions.c b/lib/tls13/encrypted_extensions.c new file mode 100644 index 0000000000..05673f8e85 --- /dev/null +++ b/lib/tls13/encrypted_extensions.c @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2017 Red Hat, Inc. + * + * Author: Nikos Mavrogiannopoulos + * + * This file is part of GnuTLS. + * + * The GnuTLS is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +#include "gnutls_int.h" +#include "errors.h" +#include "hello_ext.h" +#include "handshake.h" +#include "tls13/encrypted_extensions.h" + +int _gnutls13_recv_encrypted_extensions(gnutls_session_t session) +{ + int ret; + gnutls_buffer_st buf; + + ret = _gnutls_recv_handshake(session, GNUTLS_HANDSHAKE_ENCRYPTED_EXTENSIONS, 0, &buf); + if (ret < 0) + return gnutls_assert_val(ret); + + _gnutls_handshake_log("HSK[%p]: parsing encrypted extensions\n", session); + ret = _gnutls_parse_hello_extensions(session, GNUTLS_EXT_FLAG_EE, GNUTLS_EXT_ANY, + buf.data, buf.length); + _gnutls_buffer_clear(&buf); + + if (ret < 0) + return gnutls_assert_val(ret); + + return 0; +} |