I'd like to ask a question. I know it is possible to modify the memory of a hareware key by modifying HaspFile which is ReadWrite
Dim file As HaspFile = hasp.GetFile(HaspFileId.ReadWrite)
Dim newBytes() AsByte = New Byte() {1, 2, 3, 4, 5, 6, 7}
status = file.Write(newBytes, 0, newBytes.Length)
But I'd like to know, is it possible to modify the readonly memory part of the Key without having a Mater key?
It seems not possible to do it via code?
But is it possible to do via Tools such as Vendor Suit?
Thank you very much for your kindness help in advance.