/* * Copyright (c) 2024-2024 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef SIGNATRUETOOLS_SIGNED_FILE_POS_H #define SIGNATRUETOOLS_SIGNED_FILE_POS_H #include #include #include #include #include "byte_buffer.h" namespace OHOS { namespace SignatureTools { class SignedFilePos { public: SignedFilePos(int32_t fileNameOffset, int32_t fileNameSize, int32_t signInfoOffset, int32_t signInfoSize); static SignedFilePos FromByteArray(std::vector &bytes); int32_t GetFileNameOffset(); int32_t GetFileNameSize(); int32_t GetSignInfoOffset(); int32_t GetSignInfoSize(); void IncreaseFileNameOffset(int32_t incOffset); void IncreaseSignInfoOffset(int32_t incOffset); private: int32_t fileNameOffset; int32_t fileNameSize; int32_t signInfoOffset; int32_t signInfoSize; }; } // namespace SignatureTools } // namespace OHOS #endif // SIGNATRUETOOLS_SIGNED_FILE_POS_H