def trialKey(): trial_key = Key.create_trial_key( "WyIzODQ0IiwiempTRWs4SnBKTTArYUh3WkwyZ0VwQkVyeTlUVkRWK2ZTOS8wcTBmaCJd", 3941, Helpers.GetMachineCode()) if trial_key[0] == None: print("An error occurred: {0}".format(trial_key[1])) RSAPubKey = "<RSAKeyValue><Modulus>sGbvxwdlDbqFXOMlVUnAF5ew0t0WpPW7rFpI5jHQOFkht/326dvh7t74RYeMpjy357NljouhpTLA3a6idnn4j6c3jmPWBkjZndGsPL4Bqm+fwE48nKpGPjkj4q/yzT4tHXBTyvaBjA8bVoCTnu+LiC4XEaLZRThGzIn5KQXKCigg6tQRy0GXE13XYFVz/x1mjFbT9/7dS8p85n8BuwlY5JvuBIQkKhuCNFfrUxBWyu87CFnXWjIupCD2VO/GbxaCvzrRjLZjAngLCMtZbYBALksqGPgTUN7ZM24XbPWyLtKPaXF2i4XRR9u6eTj5BfnLbKAU5PIVfjIS+vNYYogteQ==</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>" auth = "WyIyNTU1IiwiRjdZZTB4RmtuTVcrQlNqcSszbmFMMHB3aWFJTlBsWW1Mbm9raVFyRyJd==" result = Key.activate(token=auth,\ rsa_pub_key=RSAPubKey,\ product_id=3349, \ key=trial_key[0],\ machine_code=Helpers.GetMachineCode()) if result[0] == None or not Helpers.IsOnRightMachine(result[0]): print("An error occurred: {0}".format(result[1])) else: print("Success") license_key = result[0] print("Feature 1: " + str(license_key.f1)) print("License expires: " + str(license_key.expires))
if res[0] == None or not Helpers.IsOnRightMachine(res[0]): print("An error occured: {0}".format(res[1])) else: print("Success") license_key = res[0] print("Feature 1: " + str(license_key.f1)) print("License expires: " + str(license_key.expires)) if res[0] != None: # saving license file to disk with open('licensefile.skm', 'w') as f: f.write(res[0].save_as_string()) # read license file from file with open('licensefile.skm', 'r') as f: license_key = LicenseKey.load_from_string(pubKey, f.read()) if not Helpers.IsOnRightMachine(license_key): print("NOTE: This license file does not belong to this machine.") else: print("Feature 1: " + str(license_key.f1)) print("License expires: " + str(license_key.expires)) print(Helpers.GetMachineCode()) res = Key.create_trial_key("WyIzODQ0IiwiempTRWs4SnBKTTArYUh3WkwyZ0VwQkVyeTlUVkRWK2ZTOS8wcTBmaCJd", 3941, Helpers.GetMachineCode())