Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #include <cryptopp/osrng.h>
-
- #include <string>
-
- int main() {
- std::string arr;
- arr.resize(256);
- CryptoPP::OS_GenerateRandomBlock(false,
- reinterpret_cast<CryptoPP::byte*>(arr.data()),
- arr.size());
- for (auto b : arr) {
- if (b != '\x00') {
- return 0;
- }
- }
- return 1;
- }
|