/*
    This file is part of TON Blockchain Library.
    TON Blockchain Library is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
    TON Blockchain Library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.
    You should have received a copy of the GNU Lesser General Public License
    along with TON Blockchain Library.  If not, see .
    Copyright 2017-2020 Telegram Systems LLP
*/
#pragma once
#include "td/utils/common.h"
#include "td/utils/Slice.h"
#include "td/utils/Span.h"
namespace td {
class Random {
 public:
#if TD_HAVE_OPENSSL
  static void secure_bytes(MutableSlice dest);
  static void secure_bytes(unsigned char *ptr, size_t size);
  static int32 secure_int32();
  static int64 secure_int64();
  static uint32 secure_uint32();
  static uint64 secure_uint64();
  // works only for current thread
  static void add_seed(Slice bytes, double entropy = 0);
  static void secure_cleanup();
#endif
  static uint32 fast_uint32();
  static uint64 fast_uint64();
  // distribution is not uniform, min and max are included
  static int fast(int min, int max);
  static double fast(double min, double max);
  class Fast {
   public:
    uint64 operator()() {
      return fast_uint64();
    }
  };
  class Xorshift128plus {
   public:
    explicit Xorshift128plus(uint64 seed);
    Xorshift128plus(uint64 seed_a, uint64 seed_b);
    uint64 operator()();
    int fast(int min, int max);
    int64 fast64(int64 min, int64 max);
    void bytes(MutableSlice dest);
   private:
    uint64 seed_[2];
  };
};
template 
void random_shuffle(td::MutableSpan v, R &rnd) {
  for (std::size_t i = 1; i < v.size(); i++) {
    auto pos = static_cast(rnd() % (i + 1));
    std::swap(v[i], v[pos]);
  }
}
}  // namespace td