Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #include "cryptography/signed.hpp"
7 :
8 : #include "utils/string_builder.hpp"
9 :
10 : namespace shared_model {
11 : namespace crypto {
12 :
13 : std::string Signed::toString() const {
14 0 : return detail::PrettyStringBuilder()
15 0 : .init("Signed")
16 0 : .append(Blob::hex())
17 0 : .finalize();
18 0 : }
19 :
20 : Signed::Signed(const std::string &blob) : Blob(blob) {}
21 :
22 : Signed::Signed(const Bytes &blob) : Blob(blob) {}
23 :
24 : Signed::Signed(const Blob &blob) : Blob(blob) {}
25 : } // namespace crypto
26 : } // namespace shared_model
|