Hello
I have an "Expiration Date" type feature and Read/Write Default Memory in the license.
If the feature is within the expiration date, i can read/write memory as
- status = hasp_login(feature, vendor_code, &handle);
- status = hasp_read(handle, HASP_FILEID_RW, offset, len, data);
However, if the feature gets expired, hasp_login() returns HASP_FEATURE_EXPIRED.
After that, since the handle is invalid, hasp_read() fails to read memory.
Is there a way to read the memory even though the feature has expired?
Thank you