Here is an example of what the Registration code could look like:
# Construct the registration code registration_code = f"NI7-{user_id}-{license_key}-{signature}"
def generate_registration_code(user_id, license_key, machine_id): # Combine the user ID, license key, and machine ID into a single string combined_string = f"{user_id}{license_key}{machine_id}"