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
I encountered a problem in the function tls_certificate_set_copy: you set (*member)[len] = 0; but by that you overwrite the seconds of the validity you wanted to save. It should be (*member)[len + 2] = 0; i think. At least this worked for me.