// Copyright 2014 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef FXBARCODE_COMMON_REEDSOLOMON_BC_REEDSOLOMONGF256POLY_H_ #define FXBARCODE_COMMON_REEDSOLOMON_BC_REEDSOLOMONGF256POLY_H_ #include #include #include "core/fxcrt/unowned_ptr.h" class CBC_ReedSolomonGF256; class CBC_ReedSolomonGF256Poly final { public: CBC_ReedSolomonGF256Poly(CBC_ReedSolomonGF256* field, int32_t coefficients); CBC_ReedSolomonGF256Poly(); ~CBC_ReedSolomonGF256Poly(); bool Init(CBC_ReedSolomonGF256* field, const std::vector* coefficients); int32_t GetCoefficients(int32_t degree) const; const std::vector& GetCoefficients() const; int32_t GetDegree() const; bool IsZero() const; int32_t EvaluateAt(int32_t a); std::unique_ptr AddOrSubtract( const CBC_ReedSolomonGF256Poly* other); std::unique_ptr Multiply( const CBC_ReedSolomonGF256Poly* other); std::unique_ptr Multiply(int32_t scalar); std::unique_ptr MultiplyByMonomial( int32_t degree, int32_t coefficient) const; std::unique_ptr Divide( const CBC_ReedSolomonGF256Poly* other); std::unique_ptr Clone() const; private: UnownedPtr m_field; std::vector m_coefficients; }; #endif // FXBARCODE_COMMON_REEDSOLOMON_BC_REEDSOLOMONGF256POLY_H_