blob: fc4aa9ab0e223ae0da50daf6564b735615389f2c (
plain)
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
35
36
37
38
39
|
// SPDX-License-Identifier: BSL-1.0
// Copyright 2025-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Official repository: https://github.com/ocl-foss-org/fix
#ifndef OCL_FIX_CHECKSUM
#define OCL_FIX_CHECKSUM
#include <ocl/fix/detail/config.hpp>
#include <ocl/fix/parser.hpp>
#include <boost/core/detail/string_view.hpp>
namespace ocl::fix
{
/// \brief Returns the checksum index of a FIX message.
/// \param range the range_buffer containing the message.
/// \throws runtime_error if the FIX message is invalid (missing tag "8").
std::string try_index_checksum(range_buffer& fix);
/// \brief FIX message operators namespace.
namespace operators
{
using checksum_type = long long;
/// \brief Calculates the FIX protocol checksum for a message.
/// \param in_ Pointer to the message buffer.
/// \param len Length of the message in bytes.
/// \return The checksum value (sum of all bytes modulo 256).
checksum_type
checksum(const boost::string_view& in_) noexcept;
} // namespace operators
} // namespace ocl::fix
#endif
|