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
However, this method isn't usable without pulling in the raw s2n_tls_sys types because the callback function requires a pointer to the raw s2n-tls connection: s2n_tls_key_log_fn
Solution:
We should expose an ergonomic, safe key log functionality for the rust bindings
The text was updated successfully, but these errors were encountered:
One thing that we should probably fix is making the opened file a static/LazyCell. The way it is right now is each try_open returns a new File handle, which could potentially lead to a mangled file, since we're concurrently writing to it.
Problem:
The bindings expose a key logging callback: set_key_log_callback
However, this method isn't usable without pulling in the raw
s2n_tls_sys
types because the callback function requires a pointer to the raw s2n-tls connection: s2n_tls_key_log_fnSolution:
We should expose an ergonomic, safe key log functionality for the rust bindings
The text was updated successfully, but these errors were encountered: