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
JSON object returned by functions are using jansson at the low level. This library uses malloc and free but offer the ability to override them when memory cleansing is necessary (to clean sensitive data).
Jose itself uses a rather simple zero function to clean some of the memory and then calls free. This is true even for objects originally allocated by jansson (probably indirectly). This prevents to use custom functions with jansson.
It is possible to update JOSE to use the proper way provided by jansson to handle memory cleansing?
The text was updated successfully, but these errors were encountered:
JSON object returned by functions are using jansson at the low level. This library uses malloc and free but offer the ability to override them when memory cleansing is necessary (to clean sensitive data).
Jose itself uses a rather simple zero function to clean some of the memory and then calls free. This is true even for objects originally allocated by jansson (probably indirectly). This prevents to use custom functions with jansson.
It is possible to update JOSE to use the proper way provided by jansson to handle memory cleansing?
The text was updated successfully, but these errors were encountered: