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
Related to #7, Wycheproof tests use a single key for any key length, which may lead to overwriting if testing them separately. The key should depend on the key length being tested to prevent this.
The text was updated successfully, but these errors were encountered:
Some tests may create different Results instances using the same set of
parameters, which would lead to a key conflict in ResultsDict. To solve
this, we add the possibility to add other values to the key created by
the add method.
Issue: #8
Hard-coding the keys in the returned ResultsDict led to a conflict when
testing more than one set of parameters (e.g. SHA-224 and SHA-256). So
we use Results.new and ResultsDict.add, along with the new extra_values
option, to ensure that keys are unique for a given run. This means that
it still does not support combining the results of testing two different
implementations of the same algorithm.
Issue: #8
Related to #7, Wycheproof tests use a single key for any key length, which may lead to overwriting if testing them separately. The key should depend on the key length being tested to prevent this.
The text was updated successfully, but these errors were encountered: