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
Well, I discovered that I had a different issue. My code was generating a signature for a structure that contained a map[string]bool. I was doing a:
for k, _ := range m {
buf.WriteString(k)
}
but that is wrong, as the ordering of keys returned is (intentionally) randomized by Go. I need to first sort the keys before adding to the buffer. Until I fix that problem, I'm closing the issue. If I still have problems, I'll re-open the issue.
nathan454
pushed a commit
to nathan454/openssl
that referenced
this issue
Nov 30, 2022
This is probably related to issue #19
I have the following method:
I just recently noticed that my unit tests usually pass, though occasionally they will fail with the error:
Maybe every 3rd or 4th time I run it is fails. If I click run again, it will pass.
The text was updated successfully, but these errors were encountered: