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
We had reports of Memory leaks when signing/verifying a with Swift-JWT. We recreated this on our own repo JWT along with encryption and decryption. This produced the following memory report: leaks.txt which highlights leaks at:
We had reports of Memory leaks when signing/verifying a with Swift-JWT. We recreated this on our own repo JWT along with encryption and decryption. This produced the following memory report: leaks.txt which highlights leaks at:
This is due to the evp_key not being properly freed after it was referenced by:
(Mirrored for private key).
There are also leaks in encrypt and decrypt where allocated memory from pointers wasn't being deallocated.
The text was updated successfully, but these errors were encountered: