Blame lib/handshake-defs.h

Packit Service 4684c1
/*
Packit Service 4684c1
 * Copyright (C) 2019 Red Hat, Inc.
Packit Service 4684c1
 *
Packit Service 4684c1
 * Author: Nikos Mavrogiannopoulos
Packit Service 4684c1
 *
Packit Service 4684c1
 * This file is part of GnuTLS.
Packit Service 4684c1
 *
Packit Service 4684c1
 * The GnuTLS is free software; you can redistribute it and/or
Packit Service 4684c1
 * modify it under the terms of the GNU Lesser General Public License
Packit Service 4684c1
 * as published by the Free Software Foundation; either version 2.1 of
Packit Service 4684c1
 * the License, or (at your option) any later version.
Packit Service 4684c1
 *
Packit Service 4684c1
 * This library is distributed in the hope that it will be useful, but
Packit Service 4684c1
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 4684c1
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 4684c1
 * Lesser General Public License for more details.
Packit Service 4684c1
 *
Packit Service 4684c1
 * You should have received a copy of the GNU Lesser General Public License
Packit Service 4684c1
 * along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit Service 4684c1
 *
Packit Service 4684c1
 */
Packit Service 4684c1
#ifndef HANDSHAKE_DEFS_H
Packit Service 4684c1
#define HANDSHAKE_DEFS_H
Packit Service 4684c1
Packit Service 4684c1
#define EARLY_TRAFFIC_LABEL "c e traffic"
Packit Service 4684c1
#define EXT_BINDER_LABEL "ext binder"
Packit Service 4684c1
#define RES_BINDER_LABEL "res binder"
Packit Service 4684c1
#define EARLY_EXPORTER_MASTER_LABEL "e exp master"
Packit Service 4684c1
#define HANDSHAKE_CLIENT_TRAFFIC_LABEL "c hs traffic"
Packit Service 4684c1
#define HANDSHAKE_SERVER_TRAFFIC_LABEL "s hs traffic"
Packit Service 4684c1
#define DERIVED_LABEL "derived"
Packit Service 4684c1
#define APPLICATION_CLIENT_TRAFFIC_LABEL "c ap traffic"
Packit Service 4684c1
#define APPLICATION_SERVER_TRAFFIC_LABEL "s ap traffic"
Packit Service 4684c1
#define APPLICATION_TRAFFIC_UPDATE "traffic upd"
Packit Service 4684c1
#define EXPORTER_MASTER_LABEL "exp master"
Packit Service 4684c1
#define RMS_MASTER_LABEL "res master"
Packit Service 4684c1
#define EXPORTER_LABEL "exporter"
Packit Service 4684c1
#define RESUMPTION_LABEL "resumption"
Packit Service 4684c1
Packit Service 4684c1
#define HRR_RANDOM \
Packit Service 4684c1
	 "\xCF\x21\xAD\x74\xE5\x9A\x61\x11\xBE\x1D\x8C\x02\x1E\x65\xB8\x91" \
Packit Service 4684c1
	 "\xC2\xA2\x11\x16\x7A\xBB\x8C\x5E\x07\x9E\x09\xE2\xC8\xA8\x33\x9C"
Packit Service 4684c1
Packit Service 4684c1
#define TLS13_TICKETS_TO_SEND 2
Packit Service 4684c1
Packit Service 4684c1
/* Enable: Appendix D4.  Middlebox Compatibility Mode */
Packit Service 4684c1
#define TLS13_APPENDIX_D4 1
Packit Service 4684c1
Packit Service 4684c1
#endif /* HANDSHAKE_DEFS_H */