Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

18 linhas
387B

  1. #include <cryptopp/osrng.h>
  2. #include <string>
  3. int main() {
  4. std::string arr;
  5. arr.resize(256);
  6. CryptoPP::OS_GenerateRandomBlock(false,
  7. reinterpret_cast<CryptoPP::byte*>(arr.data()),
  8. arr.size());
  9. for (auto b : arr) {
  10. if (b != '\x00') {
  11. return 0;
  12. }
  13. }
  14. return 1;
  15. }