]> git.ipfire.org Git - thirdparty/squid.git/blame - src/security/KeyData.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / security / KeyData.h
CommitLineData
d1d72d43 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
d1d72d43
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9#ifndef SQUID_SRC_SECURITY_KEYDATA_H
10#define SQUID_SRC_SECURITY_KEYDATA_H
11
65e41a45 12#include "sbuf/SBuf.h"
d1d72d43
AJ
13#include "security/forward.h"
14
15namespace Security
16{
17
18/// TLS certificate and private key details from squid.conf
19class KeyData
20{
21public:
22 SBuf certFile; ///< path of file containing PEM format X.509 certificate
23 SBuf privateKeyFile; ///< path of file containing private key in PEM format
24};
25
26} // namespace Security
27
28#endif /* SQUID_SRC_SECURITY_KEYDATA_H */
29