Search found 18 matches
- Thu May 18, 2023 9:52 pm
- Forum: Technical questions
- Topic: "Save Project As" does not contains RSA keys pair
- Replies: 1
- Views: 4407
"Save Project As" does not contains RSA keys pair
When I click "save project as" to save the `.vmp` file to other folder rather than beside the `.exe`, the `.vmp` file does not contains RSA keys pair.
- Fri Jan 13, 2023 11:42 pm
- Forum: Technical questions
- Topic: does VMProtect support HVCI?
- Replies: 1
- Views: 7508
Re: does VMProtect support HVCI?
At least 3.4.0 is not support. I had test if no VMP protected loading my driver, the core Integrity can be enabled; Otherwise, it can't.
- Fri Jan 13, 2023 10:26 pm
- Forum: Purchasing or Upgrading
- Topic: Can I transfer my VMProtect license to another machine?
- Replies: 1
- Views: 4387
Can I transfer my VMProtect license to another machine?
I had purchase a VMProtect Ultimate before, if I buy a new machine or my machine broken, can I transfer my VMProtect license?
- Sun Jun 16, 2019 11:39 pm
- Forum: Technical questions
- Topic: Every time Hyper-V is enable/disable cause the hwid changes (Ethernet)
- Replies: 0
- Views: 12963
Every time Hyper-V is enable/disable cause the hwid changes (Ethernet)
Every time enable/disable Hyper-V, will cause hwid changes. (generat new Ethernets).
It means your customer able to trial permanent your hardware-lock trial version.
Additional information: My system installed VMWare and Hyper-V, so you can see multiple ethernets.
It means your customer able to trial permanent your hardware-lock trial version.
Additional information: My system installed VMWare and Hyper-V, so you can see multiple ethernets.
- Sun Jun 16, 2019 10:46 pm
- Forum: Technical questions
- Topic: Hardware identifier feature - useless
- Replies: 11
- Views: 18996
Re: Hardware identifier feature - useless
Maybe same problem to me.
If you enable/disable Hyper-V and restart, the hwid will change.
If you enable/disable Hyper-V and restart, the hwid will change.
- Sat May 18, 2019 10:20 pm
- Forum: Technical questions
- Topic: Is the ExpirationDate of the license calculated in UTC ?
- Replies: 1
- Views: 3028
- Sat May 18, 2019 10:49 am
- Forum: Technical questions
- Topic: Can not create serial number: Serial number is too long
- Replies: 4
- Views: 5043
Re: Can not create serial number: Serial number is too long
I think I've figured out that a 2048-bit key can only encrypt up to 256 bytes of data.
After subtracting 11 bytes of nMinPadding, the remaining 245 bytes are available.
After subtracting 11 bytes of nMinPadding, the remaining 245 bytes are available.
- Sat May 18, 2019 10:47 am
- Forum: Technical questions
- Topic: Can not create serial number: Serial number is too long
- Replies: 4
- Views: 5043
Re: Can not create serial number: Serial number is too long
2048 bitsAdmin wrote:What RSA key length do you use?
- Fri May 17, 2019 8:37 pm
- Forum: Technical questions
- Topic: Can not create serial number: Serial number is too long
- Replies: 4
- Views: 5043
Can not create serial number: Serial number is too long
As image, I can't add a Custom Name that it's length 255 to the license.
- Wed May 15, 2019 6:56 pm
- Forum: Technical questions
- Topic: .Net KeyGen "Hardware ID is too long" exception, is it a bug ?
- Replies: 1
- Views: 3040
.Net KeyGen "Hardware ID is too long" exception, is it a bug ?
public String HardwareID { get { return strHardwareID; } set { if (value != null) { byte[] b = Convert.FromBase64String(value); if (b.Length == 0) throw new ArgumentException("Hardware ID has zero length, use 'null' instead"); if (b.Length > 32) throw new ArgumentException("Hardware I...
- Sat Apr 27, 2019 11:45 am
- Forum: Technical questions
- Topic: Does HWID have a maximum length?
- Replies: 3
- Views: 4045
Re: Does HWID have a maximum length?
And does license have a maximum length ?
- Sat Apr 27, 2019 6:56 am
- Forum: Technical questions
- Topic: Does HWID have a maximum length?
- Replies: 3
- Views: 4045
Does HWID have a maximum length?
In some scenarios, I need to know its size in advance to set up storage buffers, such as database fields.
- Thu Apr 25, 2019 7:55 am
- Forum: Technical questions
- Topic: Has anyone tried to use the Activation API in the driver(.sys) ?
- Replies: 7
- Views: 6944
Re: Has anyone tried to use the Activation API in the driver(.sys) ?
1. Driver generate the "text block" then return to user-mode app via DeviceIoControl. 2. User-mode app sends the "text block" to WebLM offline activation. (I never try WebLM offline activation now, does it return a serial number to user for next step ?) Just use activation APIs ...
- Thu Apr 25, 2019 6:30 am
- Forum: Technical questions
- Topic: Has anyone tried to use the Activation API in the driver(.sys) ?
- Replies: 7
- Views: 6944
Re: Has anyone tried to use the Activation API in the driver(.sys) ?
Explain further why I insist on checking the serial number in the driver, since I don't know much about the field of software security, if there are any mistakes, please correct them. 1. Because user-mode applications can run without digital signatures, it can be modified and still run. So I think e...
- Thu Apr 25, 2019 6:13 am
- Forum: Technical questions
- Topic: Has anyone tried to use the Activation API in the driver(.sys) ?
- Replies: 7
- Views: 6944
Re: Has anyone tried to use the Activation API in the driver(.sys) ?
You can make an user-mode activator for your driver. I don't see any problem in this. Does the Offline Activate APIs works in driver ? My idea: 1. Driver generate the "text block" then return to user-mode app via DeviceIoControl. 2. User-mode app sends the "text block" to WebLM ...