#ifndef COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_CONSTANTS_H_
#define COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_CONSTANTS_H_
#include <array>
#include <cstdint>
#include <string_view>
namespace web_package {
inline constexpr uint32_t kIntegrityBlockV2TopLevelArrayLength = …;
inline constexpr std::array<uint8_t, 8> kIntegrityBlockMagicBytes = …;
inline constexpr std::array<uint8_t, 4> kIntegrityBlockV1VersionBytes = …;
inline constexpr std::array<uint8_t, 4> kIntegrityBlockV2VersionBytes = …;
inline constexpr std::string_view kWebBundleIdAttributeName = …;
inline constexpr std::string_view kEd25519PublicKeyAttributeName = …;
inline constexpr std::string_view kEcdsaP256PublicKeyAttributeName = …;
}
#endif