EdDSA Keyver is not supported in current parser?
Closed this issue · 5 comments
rahulcode60 commented
I am trying to run test vectors of EdDSA Keyver Algorithm but it seems the current parser does not have code for that.
smuellerDD commented
What about int (*eddsa_keyver)(struct eddsa_keyver_data *data, flags_t parsed_flags); ?CiaoStephan—Cui bono?Am 01.09.2024 um 12:54 schrieb rahulcode60 ***@***.***>:
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
rahulcode60 commented
When I try to run vectors I get this error.
**ACVPParser (11:19:30) Verbose [parser/parser_common.c:exec_test:403]: No callback defined
ACVPParser (11:19:30) Warning [parser/parser_common.c:exec_test:446]: Test execution failed with error -95
ACVPParser (11:19:30) Error [parser/parser_common.c:parse_array:846]: Test execution failed**
I have attached full log in txt file.
logs.txt
smuellerDD commented
Am Montag, 2. September 2024, 07:52:31 MESZ schrieb rahulcode60:
Hi rahulcode60,
When I try to run vectors I get this error.
**ACVPParser (11:19:30) Verbose [parser/parser_common.c:exec_test:403]: No
callback defined
The issue is exactly as mentioned in the log: whatever backend you are using,
there is no callback defined for this operation. If it is one of the provided
backends, then there is no key verification support to my knowledge. If you
have your own backend, perhaps you need to add it.
Ciao
Stephan
rahulcode60 commented
I am using backend_openssl3.c
smuellerDD commented
Am Montag, 2. September 2024, 12:34:55 MESZ schrieb rahulcode60:
Hi rahulcode60,
I am using **backend_openssl3.c**
As said, I am unaware that OpenSSL offers the EdDSA key verification support.
Thus, there is no support in the backend.
Ciao
Stephan