Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

convert c++ to delphi HWID decoding Vmprotect

Featured Replies

Posted

I have a code for converting serials into segments written in C ++. Now I want to use this code in an application that I wrote in Delphi. I've translated some of the code but I did not understand a number of commands. Help me convert my code into Delphi

      std::string hwid_str = "aDBUvGX+SZeXe0ZRtjUGQTpD2jk=";
      size_t len = hwid_str.size();
      uint8_t *hwid = new uint8_t[len];
      Base64Decodehwid_str.c_str(), hwid_str.size(), hwid, len);
      for (size_t i = 0; i < len; i += 4) {
         uint32_t value = *reinterpret_cast<uint32_t *>(&hwid[i]);
         uint32_t id = value & ~3;
         switch (value & 3) {
         case 0:
            printf("CPU: %X\n", id);
            break;
         case 1:
            printf("Host: %X\n", id);
            break;
         case 2:
            printf("Ethernet: %X\n", id);
            break;
         case 3:
            printf("HDD: %X\n", id);
            break;
         }
      }
      delete [] hwid;

please help convert to delphi

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.