1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/* IKEv2 CERT payload, for libreswan
*
* Copyright (C) 2000 Andreas Hess, Patric Lichtsteiner, Roger Wegmann
* Copyright (C) 2001 Marco Bertossa, Andreas Schleiss
* Copyright (C) 2002 Mario Strasser
* Copyright (C) 2000-2003 Andreas Steffen, Zuercher Hochschule Winterthur
* Copyright (C) 2015 Matt Rogers, <mrogers@libreswan.org>
* Copyright (C) 2019-2022 Andrew Cagney
* Copyright (C) 2019 D. Hugh Redelmeier <hugh@mimosa.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program 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 General Public License
* for more details.
*/
#ifndef IKEV2_CERT_H
#define IKEV2_CERT_H
#include "demux.h" /* "for" pbs_out */
struct ike_sa;
struct msg_digest;
struct connection;
bool ikev2_send_cert_decision(const struct ike_sa *ike);
stf_status emit_v2CERT(const struct connection *c, struct pbs_out *outpbs);
#endif
|