ledger-core
RippleLikeExtendedPublicKey.hpp
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file generated by Djinni from addresses.djinni
3 
4 #ifndef DJINNI_GENERATED_RIPPLELIKEEXTENDEDPUBLICKEY_HPP
5 #define DJINNI_GENERATED_RIPPLELIKEEXTENDEDPUBLICKEY_HPP
6 
7 #include <cstdint>
8 #include <memory>
9 #include <string>
10 #include <vector>
11 #ifndef LIBCORE_EXPORT
12  #if defined(_MSC_VER)
13  #include <libcore_export.h>
14  #else
15  #define LIBCORE_EXPORT
16  #endif
17 #endif
18 
19 namespace ledger { namespace core { namespace api {
20 
21 class RippleLikeAddress;
22 
23 class LIBCORE_EXPORT RippleLikeExtendedPublicKey {
24 public:
25  virtual ~RippleLikeExtendedPublicKey() {}
26 
27  virtual std::shared_ptr<RippleLikeAddress> derive(const std::string & path) = 0;
28 
29  virtual std::vector<uint8_t> derivePublicKey(const std::string & path) = 0;
30 
31  virtual std::vector<uint8_t> deriveHash160(const std::string & path) = 0;
32 
33  virtual std::string toBase58() = 0;
34 
35  virtual std::string getRootPath() = 0;
36 };
37 
38 } } } // namespace ledger::core::api
39 #endif //DJINNI_GENERATED_RIPPLELIKEEXTENDEDPUBLICKEY_HPP
Definition: RippleLikeExtendedPublicKey.hpp:23
Definition: Account.cpp:8