--
You received this message because you are subscribed to the Google Groups "wycheproof-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wycheproof-users+unsubscribe@googlegroups.com.
To post to this group, send email to wycheproof-users@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wycheproof-users/24294ffa-c538-415f-9d0b-e216b53005bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
On Fri, Dec 23, 2016 at 7:03 AM, <nolo...@gmail.com> wrote:Hi Everyone,--
Thank you for the test suite.
I'd like to evaluate C libraries and C++ libraries. README.md does not mention them by name, but does state "We are converting as many tests into sets of test vectors to simplify porting the tests to other languages".
How would one go about testing a C or C++ library? Is there a documented procedure or guidlines available somewhere?
Looking at the sources, I'm guessing JNI wrappers that provide entry points used by the test classes, like AesEaxTest, are needed. I'm less clear on how to avoid a SE Provider, which WycheproofRunner seems to rely on.
Thanks in advance,
Jeff
You received this message because you are subscribed to the Google Groups "wycheproof-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wycheproof-users+unsubscribe@googlegroups.com.
To post to this group, send email to wycheproof-users@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wycheproof-users/24294ffa-c538-415f-9d0b-e216b53005bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
One of the goals of the project is trying to avoid rewriting tests for each library.Very helpful for this goal are common interfaces: JCA is such a common interface and the reason for starting the project in Java.For libraries that do not have a common interface at least the test vector can be reused. Hence, we try to use a much test vectors as possible.For C/C++ we might define an interface for the tests and rewrite them it just hasn't been done yet.