CCF/include/ccf/crypto/hash_bytes.h

11 строки
222 B
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache 2.0 License.
#pragma once
#include <cstdint>
#include <vector>
namespace ccf::crypto
{
using HashBytes = std::vector<uint8_t>;
}