test.cpp 245 B

123456789101112
  1. #include <crypt/BigInt64.hpp>
  2. #include <hash.hpp>
  3. int main(){
  4. unsigned long long a = 0;
  5. unsigned long long* b = &a;
  6. while(true){
  7. auto hesch = sha512(b,b+1);
  8. a++;
  9. std::cout << hesch.hexString();
  10. }
  11. std::cout << "Fertig" << std::endl;
  12. }