forked from ton-blockchain/ton
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPyKeys.h
42 lines (35 loc) · 1.22 KB
/
PyKeys.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2023 Disintar LLP / [email protected]
#include <vector>
#include <string.h>
#include "tonlib/tonlib/keys/Mnemonic.h"
#ifndef TON_PYKEYS_H
#define TON_PYKEYS_H
class PyPublicKey {
public:
td::Ed25519::PublicKey key;
PyPublicKey(std::string key_int);
PyPublicKey(td::Ed25519::PublicKey key_) : key(std::move(key_)){};
std::string get_public_key_hex();
PyPublicKey(const PyPublicKey& other) : key(td::Ed25519::PublicKey(other.key.as_octet_string())){};
};
class PyPrivateKey {
public:
td::Ed25519::PrivateKey key;
PyPrivateKey();
PyPrivateKey(std::string key_int);
PyPrivateKey(td::Ed25519::PrivateKey key_) : key(td::Ed25519::PrivateKey(key_.as_octet_string())){};
std::string get_private_key_hex();
PyPublicKey get_public_key();
};
class PyMnemonic {
public:
tonlib::Mnemonic my_mnemo;
PyMnemonic(std::vector<std::string> mnemo, std::string mnemonic_password);
PyMnemonic(tonlib::Mnemonic mnemo) : my_mnemo(std::move(mnemo)){};
std::vector<std::string> get_words();
std::string get_private_key_hex();
PyPrivateKey get_private_key();
};
PyMnemonic create_new_mnemo(std::string entropy, std::string password, int words_count);
std::vector<std::string> get_bip39_words();
#endif //TON_PYKEYS_H