summaryrefslogtreecommitdiff
path: root/protocols/Telegram/tdlib/td/td/telegram/DhConfig.h
blob: 8e8e806e68c0ff14d4445ee0ea3f57a73f9f8863 (plain)
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
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once

#include "td/utils/common.h"

namespace td {

class DhConfig {
 public:
  int32 version = 0;
  string prime;
  int32 g = 0;

  bool empty() const {
    return prime.empty();
  }

  template <class StorerT>
  void store(StorerT &storer) const {
    storer.store_int(version);
    storer.store_string(prime);
    storer.store_int(g);
  }

  template <class ParserT>
  void parse(ParserT &parser) {
    version = parser.fetch_int();
    prime = parser.template fetch_string<std::string>();
    g = parser.fetch_int();
  }
};

}  // namespace td