0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 20:13:05 +02:00
openvpn3/openvpn/ssl/psid.hpp
David Sommerseth 3fbe0a2701
Update copyrights
Signed-off-by: David Sommerseth <davids@openvpn.net>
2020-03-18 19:37:32 +01:00

109 lines
2.4 KiB
C++

// OpenVPN -- An application to securely tunnel IP networks
// over a single port, with support for SSL/TLS-based
// session authentication and key exchange,
// packet encryption, packet authentication, and
// packet compression.
//
// Copyright (C) 2012-2020 OpenVPN Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License Version 3
// as published by the Free Software Foundation.
//
// 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program in the COPYING file.
// If not, see <http://www.gnu.org/licenses/>.
// A 64-bit session ID, used by ProtoContext.
#ifndef OPENVPN_SSL_PSID_H
#define OPENVPN_SSL_PSID_H
#include <string>
#include <cstring>
#include <openvpn/buffer/buffer.hpp>
#include <openvpn/common/hexstr.hpp>
#include <openvpn/common/memneq.hpp>
namespace openvpn {
class ProtoSessionID
{
public:
enum {
SIZE=8
};
ProtoSessionID()
{
reset();
}
void reset()
{
defined_ = false;
std::memset(id_, 0, SIZE);
}
explicit ProtoSessionID(Buffer& buf)
{
buf.read(id_, SIZE);
defined_ = true;
}
template <typename PRNG_TYPE>
void randomize(PRNG_TYPE& prng)
{
prng.assert_crypto();
prng.rand_bytes(id_, SIZE);
defined_ = true;
}
void read(Buffer& buf)
{
buf.read(id_, SIZE);
defined_ = true;
}
void write(Buffer& buf) const
{
buf.write(id_, SIZE);
}
void prepend(Buffer& buf) const
{
buf.prepend(id_, SIZE);
}
bool defined() const { return defined_; }
bool match(const ProtoSessionID& other) const
{
return defined_ && other.defined_ && !crypto::memneq(id_, other.id_, SIZE);
}
std::string str() const
{
return render_hex(id_, SIZE);
}
protected:
ProtoSessionID(const unsigned char *data)
{
std::memcpy(id_, data, SIZE);
}
private:
bool defined_;
unsigned char id_[SIZE];
};
} // namespace openvpn
#endif // OPENVPN_SSL_PSID_H