You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently EllipticLicense generates signatures for message - 1 byte, that is, if given 'John Doe' it will generate key for 'John Do'.
If fixed, it will render the generated keys incompatible with previous versions.
Original code omitted the last character thanks to misuse of strlen().
Notice that fixing this breaks compatibility with keys generated by the
original code.
See issue dchest#1.
Currently EllipticLicense generates signatures for message - 1 byte, that is, if given 'John Doe' it will generate key for 'John Do'.
If fixed, it will render the generated keys incompatible with previous versions.
Possibly, will introduce a flag for this.
The bug is in:
Must be:
This would also fix inability to generate keys for names of only 1 byte.
The text was updated successfully, but these errors were encountered: